diff --git a/quartz.config.yaml b/quartz.config.yaml index e783eb9..7d2d2fb 100644 --- a/quartz.config.yaml +++ b/quartz.config.yaml @@ -1,6 +1,6 @@ # yaml-language-server: $schema=./quartz/plugins/quartz-plugins.schema.json configuration: - pageTitle: Quartz 5 + pageTitle: Z Notes pageTitleSuffix: "" enableSPA: true enablePopovers: true @@ -16,30 +16,48 @@ configuration: fontOrigin: googleFonts cdnCaching: true typography: - header: Schibsted Grotesk - body: Source Sans Pro + title: + name: Cormorant Garamond + weights: + - 600 + - 700 + includeItalic: true + header: + name: Cormorant Garamond + weights: + - 500 + - 600 + - 700 + includeItalic: true + body: + name: Source Serif 4 + weights: + - 400 + - 600 + - 700 + includeItalic: true code: IBM Plex Mono colors: lightMode: - light: "#faf8f8" - lightgray: "#e5e5e5" - gray: "#b8b8b8" - darkgray: "#4e4e4e" - dark: "#2b2b2b" - secondary: "#284b63" - tertiary: "#84a59d" - highlight: rgba(143, 159, 169, 0.15) - textHighlight: "#fff23688" + light: "#f4eedf" + lightgray: "#d8ccb3" + gray: "#a79575" + darkgray: "#43382c" + dark: "#241c16" + secondary: "#7a2632" + tertiary: "#365c48" + highlight: "rgba(171, 137, 73, 0.18)" + textHighlight: "#d7b95f66" darkMode: - light: "#161618" - lightgray: "#393639" - gray: "#646464" - darkgray: "#d4d4d4" - dark: "#ebebec" - secondary: "#7b97aa" - tertiary: "#84a59d" - highlight: rgba(143, 159, 169, 0.15) - textHighlight: "#b3aa0288" + light: "#1b1713" + lightgray: "#393026" + gray: "#74634d" + darkgray: "#d8cbb3" + dark: "#f0e5cf" + secondary: "#c59a59" + tertiary: "#78947b" + highlight: "rgba(197, 154, 89, 0.17)" + textHighlight: "#936f3466" plugins: - source: github:quartz-community/created-modified-date enabled: true @@ -220,7 +238,7 @@ plugins: position: afterBody priority: 10 - source: github:quartz-community/footer - enabled: true + enabled: false options: links: GitHub: https://github.com/jackyzha0/quartz @@ -256,13 +274,6 @@ plugins: position: beforeBody priority: 15 display: all - - source: - name: quartz-themes - repo: github:saberzero1/quartz-themes - subdir: plugin - enabled: true - options: - theme: default - source: github:quartz-community/obsidian-plugin-excalidraw enabled: true options: diff --git a/quartz/styles/custom.scss b/quartz/styles/custom.scss index cdec534..fccf37e 100644 --- a/quartz/styles/custom.scss +++ b/quartz/styles/custom.scss @@ -1,3 +1,430 @@ @use "./variables.scss" as *; +@use "sass:map"; -// put your custom CSS here! +// Old Library — a source-controlled, reading-first theme. +:root { + --paper-shadow: rgba(66, 43, 23, 0.09); + --paper-rule: rgba(122, 38, 50, 0.28); + --paper-grain: rgba(74, 51, 29, 0.026); + --panel: rgba(255, 252, 242, 0.48); + --code-surface: rgba(91, 67, 39, 0.075); + --focus-ring: #9b7137; +} + +:root[saved-theme="dark"] { + --paper-shadow: rgba(0, 0, 0, 0.34); + --paper-rule: rgba(197, 154, 89, 0.28); + --paper-grain: rgba(238, 219, 180, 0.018); + --panel: rgba(65, 51, 37, 0.32); + --code-surface: rgba(238, 219, 180, 0.055); + --focus-ring: #d1aa6b; +} + +html { + font-size: 17px; +} + +body { + line-height: 1.72; + letter-spacing: 0.003em; + background-image: + repeating-linear-gradient(0deg, transparent 0, transparent 3px, var(--paper-grain) 4px), + radial-gradient(circle at 18% 12%, var(--paper-grain) 0 1px, transparent 1.5px), + radial-gradient(circle at 78% 62%, var(--paper-grain) 0 1px, transparent 1.5px); + background-size: + auto, + 31px 29px, + 37px 41px; +} + +::selection { + background: color-mix(in srgb, var(--secondary) 24%, transparent); +} + +:focus-visible { + outline: 2px solid var(--focus-ring); + outline-offset: 3px; + border-radius: 2px; +} + +.page { + max-width: 1390px; +} + +.page > #quartz-body { + box-sizing: border-box; + grid-template-columns: minmax(220px, 255px) minmax(0, 780px) minmax(205px, 250px); + column-gap: clamp(1.5rem, 3vw, 3.25rem); + justify-content: center; +} + +.page > #quartz-body .sidebar { + gap: 1rem; + padding: 4.25rem 0.6rem 2rem; + scrollbar-width: thin; +} + +.page > #quartz-body .center { + box-sizing: border-box; + position: relative; + padding: 0 clamp(0.25rem, 1.25vw, 1rem) 3rem; +} + +.page > #quartz-body .center::before { + content: ""; + position: absolute; + inset: 3.3rem -1.2rem 1.5rem; + z-index: -1; + border-inline: 1px solid color-mix(in srgb, var(--lightgray) 65%, transparent); + box-shadow: 0 1.1rem 2.8rem -2.2rem var(--paper-shadow); + pointer-events: none; +} + +article { + font-size: 1.02rem; + hanging-punctuation: first last; +} + +article > p, +article > ul, +article > ol, +article > blockquote { + max-width: 70ch; +} + +article p { + margin: 0.85rem 0 1.15rem; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + color: var(--dark); + font-family: var(--headerFont); + line-height: 1.13; + letter-spacing: -0.018em; + text-wrap: balance; +} + +.article-title { + margin: 0.35rem 0 0.35rem; + font-size: clamp(2.45rem, 5vw, 4rem); + font-weight: 600; + line-height: 0.98; +} + +article h2 { + margin-top: 2.7rem; + padding-bottom: 0.28rem; + border-bottom: 1px solid var(--paper-rule); + font-size: 2rem; +} + +article h3 { + margin-top: 2.1rem; + font-size: 1.55rem; + font-style: italic; +} + +article h4 { + margin-top: 1.8rem; + font-size: 1.22rem; + letter-spacing: 0.025em; + text-transform: uppercase; +} + +a { + text-decoration-color: color-mix(in srgb, var(--secondary) 48%, transparent); + text-decoration-thickness: 1px; + text-underline-offset: 0.16em; +} + +article a:not(.internal):not(.tag-link) { + text-decoration-line: underline; +} + +a.internal { + border-radius: 2px; + background: linear-gradient(to top, var(--highlight) 42%, transparent 42%); + padding-inline: 0.08em; +} + +hr { + height: 1px; + margin: 2.8rem auto; + border: 0; + background: linear-gradient(90deg, transparent, var(--gray) 18%, var(--gray) 82%, transparent); +} + +blockquote { + position: relative; + margin: 1.8rem 0; + padding: 0.2rem 1.4rem 0.2rem 1.65rem; + border-left: 3px double var(--secondary); + color: var(--darkgray); + font-style: italic; + background: linear-gradient(90deg, var(--highlight), transparent 78%); +} + +blockquote::before { + content: "“"; + position: absolute; + top: -0.55rem; + left: 0.35rem; + color: var(--secondary); + font-family: var(--headerFont); + font-size: 2.5rem; + opacity: 0.45; +} + +pre, +code { + font-size: 0.86em; +} + +pre { + border: 1px solid var(--lightgray); + border-radius: 3px; + background: var(--code-surface) !important; + box-shadow: inset 3px 0 0 color-mix(in srgb, var(--tertiary) 65%, transparent); +} + +:not(pre) > code { + border: 1px solid color-mix(in srgb, var(--lightgray) 72%, transparent); + border-radius: 2px; + background: var(--code-surface); + padding: 0.08em 0.3em; +} + +table { + box-sizing: border-box; + width: 100%; + border-collapse: collapse; + font-size: 0.92rem; +} + +th { + border-bottom: 2px double var(--gray); + color: var(--dark); + font-family: var(--headerFont); + font-size: 1rem; + letter-spacing: 0.035em; + text-align: left; +} + +td { + border-bottom: 1px solid color-mix(in srgb, var(--lightgray) 74%, transparent); +} + +tr:nth-child(even) td { + background: var(--panel); +} + +.callout { + border-width: 1px !important; + border-radius: 3px !important; + background: var(--panel) !important; + box-shadow: 0 0.4rem 1.3rem -1rem var(--paper-shadow); +} + +.callout-title { + font-family: var(--headerFont); + letter-spacing: 0.025em; +} + +input[type="checkbox"] { + accent-color: var(--tertiary); +} + +.page-title a { + color: var(--dark); + font-family: var(--titleFont); + font-size: 1.75rem; + font-variant: small-caps; + font-weight: 700; + letter-spacing: 0.075em; +} + +.page-title a::after { + content: " · commonplace"; + color: var(--gray); + font-size: 0.62rem; + font-variant: normal; + font-weight: 600; + letter-spacing: 0.13em; + text-transform: uppercase; +} + +.content-meta, +.breadcrumbs, +.tags { + color: var(--gray); + font-size: 0.76rem; + letter-spacing: 0.075em; + text-transform: uppercase; +} + +.breadcrumbs { + padding-bottom: 0.55rem; + border-bottom: 1px solid color-mix(in srgb, var(--lightgray) 72%, transparent); +} + +.sidebar > *:not(.page-title):not(.spacer) { + padding-block: 0.75rem; + border-top: 1px solid color-mix(in srgb, var(--lightgray) 70%, transparent); +} + +.sidebar h3, +.sidebar h4, +.explorer .folder-title, +.toc .toc-header { + font-family: var(--headerFont); + letter-spacing: 0.045em; +} + +.sidebar ul, +.sidebar ol, +.explorer-content { + font-size: 0.83rem; + line-height: 1.42; +} + +.search > .search-button { + border: 1px solid var(--lightgray); + border-radius: 2px; + background: var(--panel); +} + +.graph, +.backlinks, +.toc { + opacity: 0.88; + transition: opacity 160ms ease; +} + +.graph:hover, +.backlinks:hover, +.toc:hover { + opacity: 1; +} + +.popover { + border: 1px solid var(--gray); + border-radius: 3px; + background-color: var(--light); + box-shadow: 0 1rem 2.2rem var(--paper-shadow); +} + +.tag-link { + border: 1px solid color-mix(in srgb, var(--secondary) 35%, var(--lightgray)); + border-radius: 999px; + background: var(--panel) !important; + padding: 0.08rem 0.48rem !important; + font-size: 0.76rem; + letter-spacing: 0.04em; +} + +img { + border-radius: 2px; +} + +article > img, +article p > img { + box-shadow: 0 0.6rem 1.6rem -1rem var(--paper-shadow); +} + +@media all and ($tablet) { + .page > #quartz-body { + grid-template-columns: minmax(210px, 245px) minmax(0, 1fr); + column-gap: 2rem; + } + + .page > #quartz-body .sidebar { + padding-top: 3.25rem; + } + + .page > #quartz-body .center::before { + right: -0.5rem; + } +} + +@media all and ($mobile) { + html { + font-size: 16px; + } + + .page > #quartz-body { + display: grid; + grid-template-columns: minmax(0, 1fr); + padding-inline: clamp(1rem, 5vw, 1.5rem); + } + + .page > #quartz-body .sidebar.left { + align-items: center; + gap: 0.55rem; + padding-top: 1rem; + border-bottom: 1px double var(--paper-rule); + } + + .page > #quartz-body .sidebar.right { + gap: 1rem; + padding-top: 1.5rem; + } + + .page > #quartz-body .sidebar > * { + border-top: 0; + } + + .page > #quartz-body .center { + padding-inline: 0; + } + + .page > #quartz-body .center::before { + display: none; + } + + .page-title a { + font-size: 1.45rem; + } + + .page-title a::after { + display: none; + } + + .article-title { + font-size: clamp(2.25rem, 12vw, 3.35rem); + } + + article h2 { + font-size: 1.7rem; + } + + article { + overflow-wrap: anywhere; + } + + article table { + display: block; + max-width: 100%; + overflow-x: auto; + } + + pre { + max-width: calc(100vw - 2rem); + overflow-x: auto; + } +} + +@media (prefers-reduced-motion: reduce) { + *, + *::before, + *::after { + scroll-behavior: auto !important; + transition-duration: 0.01ms !important; + } +} + +@use "./themes"; diff --git a/quartz/styles/custom.scssr b/quartz/styles/custom.scssr new file mode 100644 index 0000000..89fce50 --- /dev/null +++ b/quartz/styles/custom.scssr @@ -0,0 +1,428 @@ +@use "./variables.scss" as *; +@use "sass:map"; + +// Old Library — a source-controlled, reading-first theme. +:root { + --paper-shadow: rgba(66, 43, 23, 0.09); + --paper-rule: rgba(122, 38, 50, 0.28); + --paper-grain: rgba(74, 51, 29, 0.026); + --panel: rgba(255, 252, 242, 0.48); + --code-surface: rgba(91, 67, 39, 0.075); + --focus-ring: #9b7137; +} + +:root[saved-theme="dark"] { + --paper-shadow: rgba(0, 0, 0, 0.34); + --paper-rule: rgba(197, 154, 89, 0.28); + --paper-grain: rgba(238, 219, 180, 0.018); + --panel: rgba(65, 51, 37, 0.32); + --code-surface: rgba(238, 219, 180, 0.055); + --focus-ring: #d1aa6b; +} + +html { + font-size: 17px; +} + +body { + line-height: 1.72; + letter-spacing: 0.003em; + background-image: + repeating-linear-gradient(0deg, transparent 0, transparent 3px, var(--paper-grain) 4px), + radial-gradient(circle at 18% 12%, var(--paper-grain) 0 1px, transparent 1.5px), + radial-gradient(circle at 78% 62%, var(--paper-grain) 0 1px, transparent 1.5px); + background-size: + auto, + 31px 29px, + 37px 41px; +} + +::selection { + background: color-mix(in srgb, var(--secondary) 24%, transparent); +} + +:focus-visible { + outline: 2px solid var(--focus-ring); + outline-offset: 3px; + border-radius: 2px; +} + +.page { + max-width: 1390px; +} + +.page > #quartz-body { + box-sizing: border-box; + grid-template-columns: minmax(220px, 255px) minmax(0, 780px) minmax(205px, 250px); + column-gap: clamp(1.5rem, 3vw, 3.25rem); + justify-content: center; +} + +.page > #quartz-body .sidebar { + gap: 1rem; + padding: 4.25rem 0.6rem 2rem; + scrollbar-width: thin; +} + +.page > #quartz-body .center { + box-sizing: border-box; + position: relative; + padding: 0 clamp(0.25rem, 1.25vw, 1rem) 3rem; +} + +.page > #quartz-body .center::before { + content: ""; + position: absolute; + inset: 3.3rem -1.2rem 1.5rem; + z-index: -1; + border-inline: 1px solid color-mix(in srgb, var(--lightgray) 65%, transparent); + box-shadow: 0 1.1rem 2.8rem -2.2rem var(--paper-shadow); + pointer-events: none; +} + +article { + font-size: 1.02rem; + hanging-punctuation: first last; +} + +article > p, +article > ul, +article > ol, +article > blockquote { + max-width: 70ch; +} + +article p { + margin: 0.85rem 0 1.15rem; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + color: var(--dark); + font-family: var(--headerFont); + line-height: 1.13; + letter-spacing: -0.018em; + text-wrap: balance; +} + +.article-title { + margin: 0.35rem 0 0.35rem; + font-size: clamp(2.45rem, 5vw, 4rem); + font-weight: 600; + line-height: 0.98; +} + +article h2 { + margin-top: 2.7rem; + padding-bottom: 0.28rem; + border-bottom: 1px solid var(--paper-rule); + font-size: 2rem; +} + +article h3 { + margin-top: 2.1rem; + font-size: 1.55rem; + font-style: italic; +} + +article h4 { + margin-top: 1.8rem; + font-size: 1.22rem; + letter-spacing: 0.025em; + text-transform: uppercase; +} + +a { + text-decoration-color: color-mix(in srgb, var(--secondary) 48%, transparent); + text-decoration-thickness: 1px; + text-underline-offset: 0.16em; +} + +article a:not(.internal):not(.tag-link) { + text-decoration-line: underline; +} + +a.internal { + border-radius: 2px; + background: linear-gradient(to top, var(--highlight) 42%, transparent 42%); + padding-inline: 0.08em; +} + +hr { + height: 1px; + margin: 2.8rem auto; + border: 0; + background: linear-gradient(90deg, transparent, var(--gray) 18%, var(--gray) 82%, transparent); +} + +blockquote { + position: relative; + margin: 1.8rem 0; + padding: 0.2rem 1.4rem 0.2rem 1.65rem; + border-left: 3px double var(--secondary); + color: var(--darkgray); + font-style: italic; + background: linear-gradient(90deg, var(--highlight), transparent 78%); +} + +blockquote::before { + content: "“"; + position: absolute; + top: -0.55rem; + left: 0.35rem; + color: var(--secondary); + font-family: var(--headerFont); + font-size: 2.5rem; + opacity: 0.45; +} + +pre, +code { + font-size: 0.86em; +} + +pre { + border: 1px solid var(--lightgray); + border-radius: 3px; + background: var(--code-surface) !important; + box-shadow: inset 3px 0 0 color-mix(in srgb, var(--tertiary) 65%, transparent); +} + +:not(pre) > code { + border: 1px solid color-mix(in srgb, var(--lightgray) 72%, transparent); + border-radius: 2px; + background: var(--code-surface); + padding: 0.08em 0.3em; +} + +table { + box-sizing: border-box; + width: 100%; + border-collapse: collapse; + font-size: 0.92rem; +} + +th { + border-bottom: 2px double var(--gray); + color: var(--dark); + font-family: var(--headerFont); + font-size: 1rem; + letter-spacing: 0.035em; + text-align: left; +} + +td { + border-bottom: 1px solid color-mix(in srgb, var(--lightgray) 74%, transparent); +} + +tr:nth-child(even) td { + background: var(--panel); +} + +.callout { + border-width: 1px !important; + border-radius: 3px !important; + background: var(--panel) !important; + box-shadow: 0 0.4rem 1.3rem -1rem var(--paper-shadow); +} + +.callout-title { + font-family: var(--headerFont); + letter-spacing: 0.025em; +} + +input[type="checkbox"] { + accent-color: var(--tertiary); +} + +.page-title a { + color: var(--dark); + font-family: var(--titleFont); + font-size: 1.75rem; + font-variant: small-caps; + font-weight: 700; + letter-spacing: 0.075em; +} + +.page-title a::after { + content: " · commonplace"; + color: var(--gray); + font-size: 0.62rem; + font-variant: normal; + font-weight: 600; + letter-spacing: 0.13em; + text-transform: uppercase; +} + +.content-meta, +.breadcrumbs, +.tags { + color: var(--gray); + font-size: 0.76rem; + letter-spacing: 0.075em; + text-transform: uppercase; +} + +.breadcrumbs { + padding-bottom: 0.55rem; + border-bottom: 1px solid color-mix(in srgb, var(--lightgray) 72%, transparent); +} + +.sidebar > *:not(.page-title):not(.spacer) { + padding-block: 0.75rem; + border-top: 1px solid color-mix(in srgb, var(--lightgray) 70%, transparent); +} + +.sidebar h3, +.sidebar h4, +.explorer .folder-title, +.toc .toc-header { + font-family: var(--headerFont); + letter-spacing: 0.045em; +} + +.sidebar ul, +.sidebar ol, +.explorer-content { + font-size: 0.83rem; + line-height: 1.42; +} + +.search > .search-button { + border: 1px solid var(--lightgray); + border-radius: 2px; + background: var(--panel); +} + +.graph, +.backlinks, +.toc { + opacity: 0.88; + transition: opacity 160ms ease; +} + +.graph:hover, +.backlinks:hover, +.toc:hover { + opacity: 1; +} + +.popover { + border: 1px solid var(--gray); + border-radius: 3px; + background-color: var(--light); + box-shadow: 0 1rem 2.2rem var(--paper-shadow); +} + +.tag-link { + border: 1px solid color-mix(in srgb, var(--secondary) 35%, var(--lightgray)); + border-radius: 999px; + background: var(--panel) !important; + padding: 0.08rem 0.48rem !important; + font-size: 0.76rem; + letter-spacing: 0.04em; +} + +img { + border-radius: 2px; +} + +article > img, +article p > img { + box-shadow: 0 0.6rem 1.6rem -1rem var(--paper-shadow); +} + +@media all and ($tablet) { + .page > #quartz-body { + grid-template-columns: minmax(210px, 245px) minmax(0, 1fr); + column-gap: 2rem; + } + + .page > #quartz-body .sidebar { + padding-top: 3.25rem; + } + + .page > #quartz-body .center::before { + right: -0.5rem; + } +} + +@media all and ($mobile) { + html { + font-size: 16px; + } + + .page > #quartz-body { + display: grid; + grid-template-columns: minmax(0, 1fr); + padding-inline: clamp(1rem, 5vw, 1.5rem); + } + + .page > #quartz-body .sidebar.left { + align-items: center; + gap: 0.55rem; + padding-top: 1rem; + border-bottom: 1px double var(--paper-rule); + } + + .page > #quartz-body .sidebar.right { + gap: 1rem; + padding-top: 1.5rem; + } + + .page > #quartz-body .sidebar > * { + border-top: 0; + } + + .page > #quartz-body .center { + padding-inline: 0; + } + + .page > #quartz-body .center::before { + display: none; + } + + .page-title a { + font-size: 1.45rem; + } + + .page-title a::after { + display: none; + } + + .article-title { + font-size: clamp(2.25rem, 12vw, 3.35rem); + } + + article h2 { + font-size: 1.7rem; + } + + article { + overflow-wrap: anywhere; + } + + article table { + display: block; + max-width: 100%; + overflow-x: auto; + } + + pre { + max-width: calc(100vw - 2rem); + overflow-x: auto; + } +} + +@media (prefers-reduced-motion: reduce) { + *, + *::before, + *::after { + scroll-behavior: auto !important; + transition-duration: 0.01ms !important; + } +} diff --git a/quartz/styles/themes/README.md b/quartz/styles/themes/README.md new file mode 100644 index 0000000..393c0f7 --- /dev/null +++ b/quartz/styles/themes/README.md @@ -0,0 +1,56 @@ +# Tokyo Night + +- Theme: Tokyo Night +- Author: tcmmichaelb139 + +## Preview + +[Open live preview (Quartz)](https://quartz-themes.github.io/tokyo-night/) + +[Open live preview (Publish)](https://publish.saberzero.one/tokyo-night) + +## Usage (Quartz) + +### GitHub Actions + +```yaml +env: + THEME_NAME: tokyo-night +``` + +```yaml +- name: Fetch Quartz Theme + run: curl -s -S https://raw.githubusercontent.com/saberzero1/quartz-themes/master/action.sh | bash -s -- $THEME_NAME +``` + +### Automatic install into Quartz repository + +```bash +curl -s -S -o action.sh https://raw.githubusercontent.com/saberzero1/quartz-themes/master/action.sh + +./action.sh tokyo-night +``` + +### Manual install + +Copy [\_index.scss](./_index.scss) into your Quartz repository's `quartz/styles/themes/` directory. (Create the `themes` directory if it does not exist.) + +Then, add the following to your `quartz/styles/custom.scss` file after the `@use "base";` line: + +```scss +@use "themes"; +``` + +> [!IMPORTANT] +> For dark-only or light-only themes, remember to remove `Component.Darkmode()` from your `quartz.config.ts` file. + +### Quartz Syncer + +> [!IMPORTANT] +> This setup method is not yet available. It is currently being tested and will be released in the future. + +## Usage (Publish) + +Download the [publish.css](./publish.css) file and copy it into your Obsidian Publish vault. + +Then, in Obsidian Publish, open the Publish modal and select the `publish.css` file and click the "Publish" button at the bottom. diff --git a/quartz/styles/themes/_index.scss b/quartz/styles/themes/_index.scss new file mode 100644 index 0000000..c79e1d3 --- /dev/null +++ b/quartz/styles/themes/_index.scss @@ -0,0 +1,11382 @@ +@use "sass:map"; +@use "../variables.scss" as *; + +:root { + color-scheme: light dark; + font-size: 16px; +} + +:root:root { + --icon-size: var(--icon-m) !important; + --icon-stroke: var(--icon-m-stroke-width) !important; + --callout-blend-mode: var(--highlight-mix-blend-mode); + --callout-border-opacity: 0.25; + --callout-border-width: 0px; + --callout-bug: var(--red_x); + --callout-content-background: transparent; + --callout-content-padding: 0; + --callout-default: var(--blue_x); + --callout-error: var(--red1_x); + --callout-example: var(--magenta_x); + --callout-fail: var(--red1_x); + --callout-important: var(--green_x); + --callout-info: var(--blue_x); + --callout-padding: var(--size-4-3) var(--size-4-3) var(--size-4-3) var(--size-4-6); + --callout-question: var(--yellow_x); + --callout-quote: var(--fg_dark_x); + --callout-radius: var(--radius-s); + --callout-success: var(--teal_x); + --callout-summary: var(--cyan_x); + --callout-tip: var(--cyan_x); + --callout-title-padding: 0; + --callout-title-weight: calc(var(--font-weight) + var(--bold-modifier)); + --callout-todo: var(--cyan_x); + --callout-warning: var(--orange_x); + --checkbox-border-color: var(--comment) !important; + --checkbox-border-color-hover: var(--comment) !important; + --checkbox-color: var(--green) !important; + --checkbox-color-hover: var(--green) !important; + --checkbox-margin-inline-start: 0.85em !important; + --checkbox-marker-color: var(--bg) !important; + --checkbox-radius: var(--radius-l) !important; + --checkbox-size: var(--font-text-size) !important; + --code-background: var(--bg_highlight_dark) !important; + --code-border-color: var(--background-modifier-border) !important; + --code-border-width: 0px !important; + --code-bracket-background: var(--background-modifier-hover) !important; + --code-comment: var(--text-faint) !important; + --code-function: var(--color-yellow) !important; + --code-important: var(--color-orange) !important; + --code-keyword: var(--color-pink) !important; + --code-normal: var(--fg) !important; + --code-operator: var(--color-red) !important; + --code-property: var(--color-cyan) !important; + --code-punctuation: var(--text-muted) !important; + --code-radius: var(--radius-s) !important; + --code-size: var(--font-smaller) !important; + --code-string: var(--color-green) !important; + --code-tag: var(--color-red) !important; + --code-value: var(--color-purple) !important; + --code-white-space: pre-wrap !important; + --collapse-icon-color: var(--text-faint) !important; + --collapse-icon-color-collapsed: var(--text-accent) !important; + --graph-controls-width: 240px !important; + --graph-line: var(--comment) !important; + --graph-node: var(--fg) !important; + --graph-node-attachment: var(--blue) !important; + --graph-node-focused: var(--text-accent) !important; + --graph-node-tag: var(--orange) !important; + --graph-node-unresolved: var(--text-faint) !important; + --graph-text: var(--text-normal) !important; + --icon-color: var(--text-muted) !important; + --icon-color-active: var(--magenta) !important; + --icon-color-focused: var(--magenta) !important; + --icon-color-hover: var(--blue) !important; + --icon-l: 18px !important; + --icon-l-stroke-width: 1.75px !important; + --icon-m: 18px !important; + --icon-m-stroke-width: 1.75px !important; + --icon-opacity: 0.85 !important; + --icon-opacity-active: 1 !important; + --icon-opacity-hover: 1 !important; + --icon-s: 16px !important; + --icon-s-stroke-width: 2px !important; + --icon-xl: 32px !important; + --icon-xl-stroke-width: 1.25px !important; + --icon-xs: 14px !important; + --icon-xs-stroke-width: 2px !important; + + --red: rgb(115, 42, 56); + --red1: rgb(140, 67, 81); + --green: rgb(51, 99, 92); + --cyan: rgb(15, 75, 110); + --blue: rgb(52, 84, 138); + --yellow: rgb(143, 94, 21); + --orange: rgb(150, 80, 39); + --magenta: rgb(90, 74, 120); + --pink: rgb(109, 74, 120); + --bg: rgb(213, 214, 219); + --bg_dark: rgb(203, 204, 209); + --bg_highlight: rgb(220, 222, 226); + --bg_highlight_dark: rgb(195, 197, 201); + --bg_dark2: rgb(188, 189, 194); + --link-decoration: underline; + --link-decoration-hover: underline; + --link-decoration-thickness: auto; + --link-external-decoration: underline; + --link-external-decoration-hover: underline; + --link-external-filter: invert(35%) sepia(28%) saturate(681%) hue-rotate(192deg) brightness(94%) contrast(85%); + --link-unresolved-opacity: 0.7; + --link-unresolved-filter: none; + --link-unresolved-decoration: solid; + --list-indent: 2.25em; + --list-spacing: 0.075em; + --list-bullet-size: 0.3em; + --table-border-width: 1px; + --blockquote-border-thickness: 3px; + --callout-border-width: 0px; + --callout-border-opacity: 0.25; + --scrollbar-width: 7px; + --font-interface-override: "??"; + --font-text-override: "??"; + --font-monospace-override: "??"; + + --quartz-icon-color: currentColor; +} +:root:root[saved-theme="dark"] { + --icon-size: var(--icon-m) !important; + --icon-stroke: var(--icon-m-stroke-width) !important; + --callout-blend-mode: var(--highlight-mix-blend-mode); + --callout-border-opacity: 0.25; + --callout-border-width: 0px; + --callout-bug: var(--red_x); + --callout-content-background: transparent; + --callout-content-padding: 0; + --callout-default: var(--blue_x); + --callout-error: var(--red1_x); + --callout-example: var(--magenta_x); + --callout-fail: var(--red1_x); + --callout-important: var(--green_x); + --callout-info: var(--blue_x); + --callout-padding: var(--size-4-3) var(--size-4-3) var(--size-4-3) var(--size-4-6); + --callout-question: var(--yellow_x); + --callout-quote: var(--fg_dark_x); + --callout-radius: var(--radius-s); + --callout-success: var(--teal_x); + --callout-summary: var(--cyan_x); + --callout-tip: var(--cyan_x); + --callout-title-padding: 0; + --callout-title-weight: calc(var(--font-weight) + var(--bold-modifier)); + --callout-todo: var(--cyan_x); + --callout-warning: var(--orange_x); + --checkbox-border-color: var(--comment) !important; + --checkbox-border-color-hover: var(--comment) !important; + --checkbox-color: var(--green) !important; + --checkbox-color-hover: var(--green) !important; + --checkbox-margin-inline-start: 0.85em !important; + --checkbox-marker-color: var(--bg) !important; + --checkbox-radius: var(--radius-l) !important; + --checkbox-size: var(--font-text-size) !important; + --code-background: var(--bg_highlight_dark) !important; + --code-border-color: var(--background-modifier-border) !important; + --code-border-width: 0px !important; + --code-bracket-background: var(--background-modifier-hover) !important; + --code-comment: var(--text-faint) !important; + --code-function: var(--color-yellow) !important; + --code-important: var(--color-orange) !important; + --code-keyword: var(--color-pink) !important; + --code-normal: var(--fg) !important; + --code-operator: var(--color-red) !important; + --code-property: var(--color-cyan) !important; + --code-punctuation: var(--text-muted) !important; + --code-radius: var(--radius-s) !important; + --code-size: var(--font-smaller) !important; + --code-string: var(--color-green) !important; + --code-tag: var(--color-red) !important; + --code-value: var(--color-purple) !important; + --code-white-space: pre-wrap !important; + --collapse-icon-color: var(--text-faint) !important; + --collapse-icon-color-collapsed: var(--text-accent) !important; + --graph-controls-width: 240px !important; + --graph-line: var(--comment) !important; + --graph-node: var(--fg) !important; + --graph-node-attachment: var(--blue) !important; + --graph-node-focused: var(--text-accent) !important; + --graph-node-tag: var(--orange) !important; + --graph-node-unresolved: var(--text-faint) !important; + --graph-text: var(--text-normal) !important; + --icon-color: var(--text-muted) !important; + --icon-color-active: var(--magenta) !important; + --icon-color-focused: var(--magenta) !important; + --icon-color-hover: var(--blue) !important; + --icon-l: 18px !important; + --icon-l-stroke-width: 1.75px !important; + --icon-m: 18px !important; + --icon-m-stroke-width: 1.75px !important; + --icon-opacity: 0.85 !important; + --icon-opacity-active: 1 !important; + --icon-opacity-hover: 1 !important; + --icon-s: 16px !important; + --icon-s-stroke-width: 2px !important; + --icon-xl: 32px !important; + --icon-xl-stroke-width: 1.25px !important; + --icon-xs: 14px !important; + --icon-xs-stroke-width: 2px !important; + + --red: rgb(219, 75, 75); + --red1: rgb(255, 117, 127); + --green: rgb(158, 206, 106); + --cyan: rgb(125, 207, 255); + --blue: rgb(122, 162, 247); + --yellow: rgb(224, 175, 104); + --orange: rgb(255, 158, 100); + --magenta: rgb(187, 154, 247); + --pink: rgb(217, 0, 105); + --bg: rgb(26, 27, 38); + --bg_dark: rgb(22, 22, 30); + --bg_highlight: rgb(41, 46, 66); + --bg_highlight_dark: rgb(36, 40, 59); + --bg_dark2: rgb(15, 15, 20); + --link-decoration: underline; + --link-decoration-hover: underline; + --link-decoration-thickness: auto; + --link-external-decoration: underline; + --link-external-decoration-hover: underline; + --link-external-filter: invert(35%) sepia(28%) saturate(681%) hue-rotate(192deg) brightness(94%) contrast(85%); + --link-unresolved-opacity: 0.7; + --link-unresolved-filter: none; + --link-unresolved-decoration: solid; + --list-indent: 2.25em; + --list-spacing: 0.075em; + --list-bullet-size: 0.3em; + --table-border-width: 1px; + --blockquote-border-thickness: 3px; + --callout-border-width: 0px; + --callout-border-opacity: 0.25; + --scrollbar-width: 7px; + --font-interface-override: "??"; + --font-text-override: "??"; + --font-monospace-override: "??"; + + --quartz-icon-color: currentColor; +} + +html[saved-theme="light"] body { + --qt-code-header: rgb(140, 67, 81); + --qt-code-default: rgb(39, 46, 75); + --qt-code-background: rgb(195, 197, 201); + --qt-code-border-color: rgba(0, 0, 0, 0); +} +html[saved-theme="dark"] body { + --qt-code-header: rgb(255, 117, 127); + --qt-code-default: rgb(169, 177, 214); + --qt-code-background: rgb(36, 40, 59); + --qt-code-border-color: rgba(0, 0, 0, 0); +} + +html { + &[saved-theme="light"] { + color-scheme: light; + .callout[data-callout] { + mix-blend-mode: darken; + } + } + &[saved-theme="dark"] { + color-scheme: dark; + .callout[data-callout] { + mix-blend-mode: lighten; + } + } +} + +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTN1OVk6OThhvAWV8.woff2) format("woff2"); + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} + +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTPlOVk6OThhvAWV8.woff2) format("woff2"); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} + +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTOVOVk6OThhvAWV8.woff2) format("woff2"); + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} + +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTNVOVk6OThhvAWV8.woff2) format("woff2"); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} + +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTNFOVk6OThhvAWV8.woff2) format("woff2"); + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTOlOVk6OThhvA.woff2) format("woff2"); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmZiAr0klQmz24O0g.woff2) format("woff2"); + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmQiAr0klQmz24O0g.woff2) format("woff2"); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmYiAr0klQmz24O0g.woff2) format("woff2"); + unicode-range: U+1F00-1FFF; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmXiAr0klQmz24O0g.woff2) format("woff2"); + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVnoiAr0klQmz24O0g.woff2) format("woff2"); + unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVn6iAr0klQmz24O0g.woff2) format("woff2"); + unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmbiAr0klQmz24O0g.woff2) format("woff2"); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAr0klQmz24O0g.woff2) format("woff2"); + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAr0klQmz24.woff2) format("woff2"); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZJhiJ-Ek-_EeAmM.woff2) format("woff2"); + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZthiJ-Ek-_EeAmM.woff2) format("woff2"); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZNhiJ-Ek-_EeAmM.woff2) format("woff2"); + unicode-range: U+1F00-1FFF; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZxhiJ-Ek-_EeAmM.woff2) format("woff2"); + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZBhiJ-Ek-_EeAmM.woff2) format("woff2"); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZFhiJ-Ek-_EeAmM.woff2) format("woff2"); + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZ9hiJ-Ek-_EeA.woff2) format("woff2"); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} + +@font-face { + font-family: "Cascadia Mono"; + font-style: normal; + font-display: swap; + font-weight: 400; + src: + url("https://cdn.jsdelivr.net/npm/@fontsource/cascadia-mono@4.2.1/files/cascadia-mono-latin-ext-400-normal.woff2") format("woff2"), + url("https://cdn.jsdelivr.net/npm/@fontsource/cascadia-mono@4.2.1/files/cascadia-mono-latin-ext-400-normal.woff") format("woff"); +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_SeW4AJi8SJQtQ4Y.woff2) format("woff2"); + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_QOW4AJi8SJQtQ4Y.woff2) format("woff2"); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_R-W4AJi8SJQtQ4Y.woff2) format("woff2"); + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_S-W4AJi8SJQtQ4Y.woff2) format("woff2"); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_SuW4AJi8SJQtQ4Y.woff2) format("woff2"); + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_ROW4AJi8SJQt.woff2) format("woff2"); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +@font-face { + font-family: "Monaco"; + font-style: normal; + font-weight: 400; + src: + local("Monaco"), + url("https://fonts.cdnfonts.com/s/14106/Monaco.woff") format("woff"); +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMRrTFcZZJmOpwVS.woff2) format("woff2"); + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtM1rTFcZZJmOpwVS.woff2) format("woff2"); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMVrTFcZZJmOpwVS.woff2) format("woff2"); + unicode-range: U+1F00-1FFF; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMprTFcZZJmOpwVS.woff2) format("woff2"); + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMZrTFcZZJmOpwVS.woff2) format("woff2"); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMdrTFcZZJmOpwVS.woff2) format("woff2"); + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMlrTFcZZJmOpw.woff2) format("woff2"); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} + +body { + body[data-slug], + body[data-slug] .page > div#quartz-body, + .page > div#quartz-body div.center, + .page > div#quartz-body footer { + background-color: var(--background-primary); + color: rgb(52, 59, 88); + } + + .page > div#quartz-body div.sidebar { + background-color: var(--background-secondary); + color: rgb(52, 59, 88); + } + + body[data-slug] div#quartz-root.page, + .page > div#quartz-body div.sidebar.left, + .page > div#quartz-body div.sidebar.left:has(.explorer), + .page > div#quartz-body div.sidebar.left .explorer .explorer-content { + background-color: var(--tab-container-background); + color: rgb(52, 59, 88); + } + + .page > div#quartz-body div.sidebar.right { + background-color: var(--tab-container-background); + color: rgb(52, 59, 88); + border-left: 0px rgb(220, 222, 226); + } + + .page > div#quartz-body div.sidebar.left { + border-right: 1px solid rgb(220, 222, 226); + } + + div#quartz-root { + background-color: var(--background-primary); + color: var(--text-normal); + } + + .note-properties.metadata-container { + background-color: var(--metadata-background); + color: var(--text-muted); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px 0px 32px; + margin-block-end: 32px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 8px 0px; + padding-block-end: 8px; + padding-block-start: 8px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .metadata-container { + background-color: var(--metadata-background); + color: var(--text-muted); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px 0px 32px; + margin-block-end: 32px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 8px 0px; + padding-block-end: 8px; + padding-block-start: 8px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .note-properties-table { + background-color: rgba(0, 0, 0, 0); + color: rgb(39, 46, 75); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .metadata-container .metadata-property { + background-color: var(--metadata-property-background); + color: rgb(39, 46, 75); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 6px; + border-top-right-radius: 6px; + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + display: flex; + } + + .metadata-property-key { + color: rgb(39, 46, 75); + font-family: var(--metadata-label-font); + font-size: 16px; + font-weight: 400; + } + + .metadata-property-value { + color: rgb(39, 46, 75); + font-family: var(--metadata-input-font); + font-size: 16px; + } + + .note-properties { + background-color: var(--metadata-background); + border-color: rgb(220, 222, 226); + border-radius: 0px; + } + + .note-properties-key { + color: rgb(39, 46, 75); + font-weight: 400; + } + + .note-properties-value { + color: rgb(39, 46, 75); + } + + .note-properties-link { + color: rgb(39, 46, 75); + } + + .note-properties-tags { + background-color: var(--pill-background); + color: var(--pill-color); + border-radius: 28px; + } + + .note-properties-row { + border-color: rgb(39, 46, 75); + } + + ol.overflow { + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + a.external-link, + footer a { + background-color: rgba(0, 0, 0, 0); + color: var(--link-external-color); + cursor: var(--cursor-link); + filter: var(--link-external-filter); + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(90, 74, 120) none 0px; + text-decoration: underline; + text-decoration-color: rgb(90, 74, 120); + text-decoration-line: var(--link-external-decoration); + text-decoration-style: solid; + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + a.internal-link, + .breadcrumb-container .breadcrumb-element > a { + background-color: rgba(0, 0, 0, 0); + color: var(--link-color); + cursor: var(--cursor-link); + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(90, 74, 120) none 0px; + text-decoration: underline; + text-decoration-color: rgb(90, 74, 120); + text-decoration-line: var(--link-decoration); + text-decoration-style: solid; + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + a.internal-link.broken { + background-color: rgba(0, 0, 0, 0); + color: var(--link-unresolved-color); + cursor: var(--cursor-link); + filter: var(--link-unresolved-filter); + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(90, 74, 120) none 0px; + text-decoration: underline oklch(0.598144 0.140543 242.945 / 0.3); + text-decoration-color: var(--link-unresolved-decoration-color); + text-decoration-line: var(--link-decoration); + text-decoration-style: var(--link-unresolved-decoration-style); + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + a.external-link:hover, + footer a:hover { + text-decoration: underline rgb(138, 92, 245); + text-decoration-color: rgb(138, 92, 245); + text-decoration-line: underline; + text-decoration-style: solid; + color: rgb(138, 92, 245); + } + + a.internal-link:hover, + .breadcrumb-container .breadcrumb-element > a:hover { + text-decoration-color: rgb(138, 92, 245); + text-decoration-line: underline; + text-decoration-style: solid; + color: rgb(138, 92, 245); + } + + .backlinks { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + padding-top: var(--size-4-1); + padding-bottom: max(var(--safe-area-inset-bottom), var(--size-4-8)); + padding-left: 12px; + padding-right: 12px; + padding-block-end: 32px; + padding-block-start: 4px; + padding-inline-end: var(--size-4-3); + padding-inline-start: var(--size-4-3); + } + + .backlinks ul li { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .backlinks ul li a { + color: var(--nav-heading-color); + } + + p { + background-color: rgba(0, 0, 0, 0); + color: var(--text-muted); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(39, 46, 75) none 0px; + text-decoration: rgb(34, 34, 34); + text-decoration-color: rgb(39, 46, 75); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: none; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > strong, + strong { + background-color: rgba(0, 0, 0, 0); + color: var(--bold-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: calc(var(--font-weight) + var(--bold-modifier)); + outline: rgb(15, 75, 110) none 0px; + text-decoration: rgb(34, 34, 34); + text-decoration-color: rgb(15, 75, 110); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > b, + b { + background-color: rgba(0, 0, 0, 0); + color: var(--bold-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: calc(var(--font-weight) + var(--bold-modifier)); + outline: rgb(15, 75, 110) none 0px; + text-decoration: rgb(34, 34, 34); + text-decoration-color: rgb(15, 75, 110); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > em, + em { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(15, 75, 110) none 0px; + text-decoration: rgb(34, 34, 34); + text-decoration-color: rgb(15, 75, 110); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > i, + i { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(15, 75, 110) none 0px; + text-decoration: rgb(34, 34, 34); + text-decoration-color: rgb(15, 75, 110); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > u, + u { + background-color: rgba(0, 0, 0, 0); + color: rgb(34, 34, 34); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + text-decoration: underline rgb(34, 34, 34); + text-decoration-color: rgb(34, 34, 34); + text-decoration-line: underline; + text-decoration-style: solid; + transform: none; + user-select: none; + animation-name: none; + animation-duration: auto; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > s, + s { + background-color: rgba(0, 0, 0, 0); + color: rgb(34, 34, 34); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + text-decoration: line-through rgb(34, 34, 34); + text-decoration-color: rgb(34, 34, 34); + text-decoration-line: line-through; + text-decoration-style: solid; + transform: none; + user-select: none; + animation-name: none; + animation-duration: auto; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > strong > em, + strong > em { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 600; + outline: rgb(15, 75, 110) none 0px; + text-decoration-color: rgb(15, 75, 110); + text-decoration-style: solid; + transition: all; + user-select: text; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-play-state: running; + } + + .text-highlight { + background-color: var(--text-highlight-bg); + color: var(--text-normal); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(52, 59, 88) none 0px; + text-decoration: rgb(0, 0, 0); + text-decoration-color: rgb(52, 59, 88); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + del { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(52, 59, 88) none 0px; + text-decoration: line-through; + text-decoration-color: rgb(52, 59, 88); + text-decoration-line: line-through; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .search > .search-container > .search-space > .search-layout .highlight { + background-color: var(--text-highlight-bg); + color: rgb(0, 0, 0); + border: 0px rgb(0, 0, 0); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + border-radius: 0px; + } + + .search > .search-container > .search-space > .search-layout > .results-container .result-card:hover, + .search > .search-container > .search-space > .search-layout > .results-container .result-card:focus, + .search > .search-container > .search-space > .search-layout > .results-container .result-card.focus:not(:has(~ .result-card:hover, ~ .result-card:focus)) { + background-color: rgba(0, 0, 0, 0); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + color: var(--nav-item-color-active); + } + + .search > .search-container > .search-space > .search-layout > .results-container .result-card:has(~ .result-card.focus:not(:has(~ .result-card:hover, ~ .result-card:focus)), ~ .result-card:focus, ~ .result-card:hover) { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + color: rgb(52, 59, 88); + } + + hr { + border-left-width: 0px; + border-right-width: 0px; + border-color: currentcolor rgb(220, 222, 226) rgb(220, 222, 226); + border-top: 2px solid rgb(220, 222, 226); + border-bottom-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 32px 0px; + margin-block-end: 32px; + margin-block-start: 32px; + margin-inline-end: 0px; + margin-inline-start: 0px; + } + + a.internal-link.tag-link, + .search > .search-container > .search-space > .search-layout > .results-container .result-card > ul > li > .match-tag { + align-items: normal; + background-color: var(--pill-background); + color: var(--pill-color); + display: flex; + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 14px; + font-weight: var(--pill-weight); + line-height: var(--line-height-tight); + text-decoration: rgb(34, 34, 34); + margin-inline-start: 0px; + border: 0px solid oklch(0.598144 0.140543 242.945 / 0.15); + border-top-left-radius: 28px; + border-top-right-radius: 28px; + border-bottom-left-radius: 28px; + border-bottom-right-radius: 28px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + a.internal-link.tag-link::before { + color: rgb(90, 74, 120); + } + + .search > .search-button { + background-color: rgb(203, 204, 209); + border: 2px solid rgb(220, 222, 226); + border-top-left-radius: 5px; + border-top-right-radius: 5px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + .search > .search-container > .search-space { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + .search > .search-container > .search-space > input { + background-color: rgb(203, 204, 209); + border: 2px solid rgb(220, 222, 226); + border-top-left-radius: 5px; + border-top-right-radius: 5px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; + box-shadow: 0 0 0 var(--input-border-width-focus) var(--background-modifier-border-focus); + } + + .search > .search-container > .search-space > * { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(52, 59, 88) none 0px; + text-decoration-color: rgb(52, 59, 88); + text-decoration-style: solid; + transition: all; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-play-state: running; + } + + .search > .search-container > .search-space > .search-layout { + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + .search > .search-container > .search-space > .search-layout > .results-container { + color: rgb(52, 59, 88); + } + + .search > .search-container > .search-space > .search-layout > .results-container .result-card { + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + border-radius: 0px; + } + + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:hover, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:focus, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card.focus:not(:has(~ .result-card:hover, ~ .result-card:focus)) { + color: var(--nav-item-color-active); + font-weight: var(--nav-item-weight); + background-color: rgba(0, 0, 0, 0); + } + + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:hover .card-title, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:hover .card-description, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:focus .card-title, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:focus .card-description, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card.focus:not(:has(~ .result-card:hover, ~ .result-card:focus)) .card-title, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card.focus:not(:has(~ .result-card:hover, ~ .result-card:focus)) .card-description { + color: var(--nav-item-color-active); + } + + .search > .search-container > .search-space > .search-layout > .preview-container { + color: rgb(39, 46, 75); + background-color: rgba(0, 0, 0, 0); + font-weight: 400; + } + + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:hover { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + h1 { + color: var(--h1-color); + font-family: var(--h1-font); + font-size: var(--h1-size); + font-weight: var(--font-weight); + line-height: var(--h1-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h1-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px 0px 16px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(140, 67, 81); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h2 { + color: var(--h2-color); + font-family: var(--h2-font); + font-size: var(--h2-size); + font-weight: var(--font-weight); + line-height: var(--h2-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h2-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px 0px 16px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(143, 94, 21); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h3 { + color: var(--h3-color); + font-family: var(--h3-font); + font-size: var(--h3-size); + font-weight: var(--font-weight); + line-height: var(--h3-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h3-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(51, 99, 92); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h4 { + color: var(--h4-color); + font-family: var(--h4-font); + font-size: var(--h4-size); + font-weight: var(--font-weight); + line-height: var(--h4-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h4-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(15, 75, 110); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h5 { + color: var(--h5-color); + font-family: var(--h5-font); + font-size: var(--h5-size); + font-weight: var(--font-weight); + line-height: var(--h5-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h5-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(52, 84, 138); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h6 { + color: var(--h6-color); + font-family: var(--h6-font); + font-size: var(--h6-size); + font-weight: var(--font-weight); + line-height: var(--h6-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h6-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(90, 74, 120); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h2.page-title, + h2.page-title a { + color: var(--inline-title-color); + font-family: var(--inline-title-font); + font-size: var(--inline-title-size); + font-weight: var(--inline-title-weight); + line-height: var(--inline-title-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: -0.38832px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px 0px 12.944px; + margin-block-end: var(--inline-title-margin-bottom); + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(140, 67, 81); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + h1::after { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h2::after { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h3::after { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h4::after { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h5::after { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h6::after { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h2.page-title::after, + h2.page-title a::after { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h1::before { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h2::before { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h3::before { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h4::before { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h5::before { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h6::before { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + h2.page-title::before, + h2.page-title a::before { + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(34, 34, 34); + } + + .preview-container { + color: rgb(39, 46, 75); + font-weight: 400; + background-color: rgba(0, 0, 0, 0); + } + + .highlight { + background-color: var(--text-highlight-bg); + border-radius: 0px; + } + + input:focus { + border-color: rgb(220, 222, 226); + box-shadow: 0 0 0 var(--input-border-width-focus) var(--background-modifier-border-focus); + } + + h1.article-title { + color: var(--inline-title-color); + font-size: var(--inline-title-size); + font-weight: var(--inline-title-weight); + } + + ul > li { + color: rgb(52, 59, 88); + text-align: start; + padding-top: var(--list-spacing); + padding-bottom: var(--list-spacing); + padding-left: 0px; + padding-right: 0px; + padding-block-end: 1.2px; + padding-block-start: 1.2px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin-top: 0px; + margin-bottom: 0px; + margin-right: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + } + + ul > li::marker { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(34, 34, 34); + pointer-events: auto; + transform: none; + } + + ol > li { + color: rgb(52, 59, 88); + text-align: start; + padding-top: var(--list-spacing); + padding-bottom: var(--list-spacing); + padding-left: 0px; + padding-right: 0px; + padding-block-end: 1.2px; + padding-block-start: 1.2px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin-top: 0px; + margin-bottom: 0px; + margin-right: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + } + + ol > li::marker { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(34, 34, 34); + pointer-events: auto; + transform: none; + } + + dl { + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + list-style: outside none disc; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + dt { + color: rgb(52, 59, 88); + font-weight: 400; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + font-size: 16px; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + dd { + color: rgb(52, 59, 88); + font-size: 16px; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + margin: 0px 0px 0px 40px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 40px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + ul.overflow { + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + code { + background-color: var(--code-background); + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: var(--code-normal); + font-family: var(--font-monospace); + padding: 2.1px 4.2px; + padding-block-end: 2.1px; + padding-block-start: 2.1px; + padding-inline-end: 4.2px; + padding-inline-start: 4.2px; + } + + pre > code, + pre:has(> code) { + background-color: var(--code-background); + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(52, 59, 88); + overflow-x: visible; + padding: 12px 16px; + padding-block-end: 12px; + padding-block-start: 12px; + padding-inline-end: 16px; + padding-inline-start: 16px; + white-space-collapse: preserve; + text-wrap-mode: nowrap; + } + + figure[data-rehype-pretty-code-figure] { + background-color: var(--code-background); + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + figure[data-rehype-pretty-code-figure] > [data-rehype-pretty-code-title] { + background-color: var(--code-background); + color: rgb(52, 59, 88); + font-family: monospace; + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + pre > code > [data-line] { + background-color: var(--code-background); + border-left: 0px solid rgb(220, 222, 226); + } + + pre > code > [data-line][data-highlighted-line] { + background-color: var(--code-background); + border-left-color: rgb(220, 222, 226); + } + + pre > code [data-highlighted-chars] { + background-color: var(--code-background); + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + input[type="checkbox"] { + appearance: auto; + border: 1px solid rgb(150, 153, 163); + border-top-left-radius: 12px; + border-top-right-radius: 12px; + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px 8px 0px -24px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 8px; + margin-inline-start: calc(var(--checkbox-size) * -1.5); + width: var(--checkbox-size); + transition: box-shadow 0.15s ease-in-out; + position: relative; + top: auto; + } + + ul > li.task-list-item { + list-style: outside none none; + text-align: start; + display: list-item; + } + + input[type="checkbox"]:checked:after { + content: normal; + top: auto; + inset-inline-start: auto; + position: static; + width: auto; + display: list-item; + background-color: rgba(0, 0, 0, 0); + } + + li.task-list-item[data-task="-"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task=">"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="/"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="?"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="!"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="*"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="l"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="b"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="i"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="S"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="I"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="p"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="c"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="f"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="k"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="u"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="d"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="w"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); + } + + blockquote { + background-color: var(--blockquote-background-color); + border-inline-start: 2px solid rgb(15, 135, 204); + color: var(--blockquote-color); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + font-style: var(--blockquote-font-style); + line-height: 24px; + padding-bottom: 0px; + padding-top: 0px; + padding-inline-start: var(--size-4-6); + margin-inline-start: 0px; + margin-inline-end: 0px; + text-decoration: rgb(34, 34, 34); + letter-spacing: normal; + } + + .data-footnote-backref { + color: var(--text-faint); + text-decoration: underline rgb(138, 92, 245); + } + + progress { + accent-color: auto; + background-color: rgba(0, 0, 0, 0); + height: 6px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + input[type="range"] { + accent-color: auto; + background-color: rgb(255, 255, 255); + border: 2px inset rgb(118, 118, 118); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + input[type="text"] { + background-color: rgba(0, 0, 0, 0); + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(39, 46, 75); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; + } + + details { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + summary { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + cursor: auto; + font-weight: 400; + list-style: inside none disclosure-closed; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + details[open] { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + kbd { + background-color: var(--code-background); + box-shadow: none; + color: var(--code-normal); + font-family: var(--font-monospace); + font-size: var(--code-size); + border: 0px rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 4px; + border-start-end-radius: 4px; + border-end-start-radius: 4px; + border-end-end-radius: 4px; + padding: 1.4px 3.5px; + padding-block-end: 1.4px; + padding-block-start: 1.4px; + padding-inline-end: 3.5px; + padding-inline-start: 3.5px; + } + + sub { + color: rgb(52, 59, 88); + font-size: 13.3333px; + vertical-align: sub; + } + + sup { + color: rgb(52, 59, 88); + font-size: 13.3333px; + vertical-align: super; + } + + abbr { + color: rgb(52, 59, 88); + cursor: auto; + text-decoration: underline dotted; + text-decoration-style: dotted; + } + + .katex-display > .katex { + display: block; + text-align: center; + white-space-collapse: collapse; + text-wrap-mode: wrap; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + .katex-display > .katex > .katex-html { + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + .katex > .katex-html { + font-family: MJXZERO, MJXTEX; + } + + h2.page-title { + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 13px; + font-weight: 400; + line-height: 16.9px; + background-color: rgba(0, 0, 0, 0); + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + .katex-display { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + .footnotes { + background-color: rgba(0, 0, 0, 0); + border-top-color: rgb(52, 59, 88); + border-top-width: 0px; + color: rgb(52, 59, 88); + } + + .spacer { + background-color: rgba(0, 0, 0, 0); + } + + pre:has(> code.mermaid) { + background-color: var(--code-background); + border: 0px solid rgb(220, 222, 226); + } + + ul.tags > li { + background-color: var(--pill-background); + color: var(--pill-color); + border: 0px solid oklch(0.598144 0.140543 242.945 / 0.15); + border-top-left-radius: 28px; + border-top-right-radius: 28px; + border-bottom-left-radius: 28px; + border-bottom-right-radius: 28px; + } + + li.task-list-item input[type="checkbox"] { + border-color: rgb(150, 153, 163); + border-radius: 12px; + border-width: 1px; + background-color: rgba(0, 0, 0, 0); + } + + li.task-list-item input[type="checkbox"]:checked { + background-color: var(--checkbox-color); + border-color: rgb(51, 99, 92); + } + + footer { + opacity: 1; + background-color: var(--status-bar-background); + color: var(--status-bar-text-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: var(--status-bar-font-size); + text-align: start; + padding-top: 4px; + padding-bottom: 4px; + padding-left: 4px; + padding-right: var(--size-4-2); + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 4px; + } + + .content-meta { + color: var(--text-muted); + font-size: 16px; + } + + details.toc summary::marker { + color: rgb(52, 59, 88); + } + + ::-webkit-scrollbar { + background-color: rgb(255, 255, 255); + } + + ::-webkit-scrollbar-thumb { + background-color: rgb(255, 255, 255); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + border: 0px rgb(34, 34, 34); + box-shadow: none; + } + + ::-webkit-scrollbar-thumb:hover { + background-color: rgb(255, 255, 255); + } + + ::-webkit-scrollbar-thumb:active { + background-color: rgb(255, 255, 255); + } + + ::-webkit-scrollbar-track { + background-color: rgb(255, 255, 255); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + ::-webkit-scrollbar-corner { + background-color: rgb(255, 255, 255); + } + + body { + scrollbar-width: var(--scrollbar-native-width); + scrollbar-color: auto; + } + + .callout { + --callout-color: var(--callout-default); + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + mix-blend-mode: normal; + padding: 12px 12px 12px 24px; + padding-block-end: 12px; + padding-block-start: 12px; + padding-inline-end: 12px; + padding-inline-start: 24px; + } + + .callout .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="note"] { + --callout-color: var(--callout-default); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="note"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="note"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="note"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="abstract"] { + --callout-color: var(--callout-summary); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="abstract"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="abstract"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="abstract"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="info"] { + --callout-color: var(--callout-info); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="info"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="info"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="info"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="todo"] { + --callout-color: var(--callout-todo); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="todo"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="todo"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="todo"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="tip"] { + --callout-color: var(--callout-tip); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="tip"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="tip"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="tip"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="success"] { + --callout-color: var(--callout-success); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="success"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="success"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="success"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="question"] { + --callout-color: var(--callout-question); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="question"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="question"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="question"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="warning"] { + --callout-color: var(--callout-warning); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="warning"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="warning"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="warning"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="danger"] { + --callout-color: var(--callout-error); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="danger"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="danger"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="danger"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="failure"] { + --callout-color: var(--callout-fail); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="failure"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="failure"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="failure"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="bug"] { + --callout-color: var(--callout-bug); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="bug"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="bug"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="bug"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="example"] { + --callout-color: var(--callout-example); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="example"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="example"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="example"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="quote"] { + --callout-color: var(--callout-quote); + background-color: rgba(var(--bg_highlight_dark_x), 0.5); + background-image: none; + background: rgba(195, 197, 201, 0.5) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="quote"] .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="quote"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="quote"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + table { + background-color: rgba(0, 0, 0, 0); + border-collapse: separate; + color: rgb(52, 59, 88); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + table-layout: auto; + text-align: start; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + thead { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + tbody { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + th { + background-color: rgba(0, 0, 0, 0); + color: var(--table-header-color); + font-weight: var(--table-header-weight); + text-align: start; + vertical-align: var(--table-cell-vertical-alignment); + box-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: normal; + border-left: var(--table-column-first-border-width) solid rgb(220, 222, 226); + border-right: 1px solid rgb(220, 222, 226); + border-top: var(--table-header-border-width) solid rgb(220, 222, 226); + border-bottom: 1px solid rgb(220, 222, 226); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; + } + + td { + background-color: rgba(0, 0, 0, 0); + color: var(--table-text-color); + font-weight: 400; + text-align: start; + vertical-align: var(--table-cell-vertical-alignment); + box-shadow: none; + text-decoration: rgb(34, 34, 34); + border: 1px solid rgb(220, 222, 226); + border-left: var(--table-column-first-border-width) solid rgb(220, 222, 226); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; + } + + tr { + background-color: var(--table-header-background); + color: rgb(52, 59, 88); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + tbody tr:nth-child(even) { + background-color: var(--table-background); + } + + tbody tr:nth-child(odd) { + background-color: var(--table-row-alt-background); + } + + .table-container { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + img { + border-radius: 0px; + box-shadow: none; + filter: none; + max-width: 100%; + object-fit: fill; + border: 0px rgb(140, 67, 81); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + } + + figure { + background-color: rgba(0, 0, 0, 0); + text-align: start; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + figcaption { + color: rgb(52, 59, 88); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 16px; + font-style: normal; + text-align: start; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + video { + border-radius: 0px; + box-shadow: none; + filter: none; + max-width: 100%; + object-fit: contain; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + } + + audio { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .transclude { + background-color: var(--embed-background); + color: rgb(52, 59, 88); + border-radius: 0px; + border-color: rgb(52, 59, 88); + border-left: 2px solid rgb(15, 135, 204); + border-right-width: 0px; + border-top-width: 0px; + border-bottom-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .transclude-inner { + background-color: var(--embed-background); + color: rgb(52, 59, 88); + border-radius: 0px; + border-left: solid; + border-width: 0px; + border-color: rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .transclude ul { + padding-left: 0px; + color: rgb(52, 59, 88); + } + + .nav-files-container .nav-file-title { + color: rgb(39, 46, 75); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + } + + .nav-files-container .nav-file-title.is-active { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + } + + .nav-files-container li:has(> .folder-outer:not(.open)) > .nav-folder-title { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--nav-item-weight); + } + + .nav-files-container li:has(> .folder-outer.open) > .nav-folder-title { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--nav-item-weight); + } + + .nav-files-container .collapse-icon { + color: var(--nav-item-color); + opacity: 1; + } + + .nav-files-container .tree-item-children { + border-left: 2px solid rgb(220, 222, 226); + border-inline-start: 2px solid rgb(220, 222, 226); + } + + .explorer .folder-container > div { + color: rgb(39, 46, 75); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + } + + .nav-files-container { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + .bases-table { + border-color: rgb(128, 128, 128); + } + + .bases-table thead th { + background-color: rgba(0, 0, 0, 0); + color: var(--table-header-color); + font-weight: var(--table-header-weight); + border-color: rgb(220, 222, 226); + } + + .bases-table tbody tr:nth-child(even) { + background-color: var(--table-row-alt-background); + } + + .bases-card { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(39, 46, 75); + border-radius: 0px; + } + + .bases-card-title { + color: var(--nav-item-color-active); + font-weight: var(--nav-item-weight); + } + + .canvas-node { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(52, 59, 88); + border-radius: 0px; + border-width: 0px; + } + + .canvas-node-content { + color: rgb(52, 59, 88); + } + + .canvas-node-file { + color: var(--text-normal); + background-color: rgba(0, 0, 0, 0); + } + + .canvas-edge-label { + color: rgb(52, 59, 88); + background-color: var(--background-primary); + } + + .canvas-controls button { + background-color: var(--background-primary); + border-color: rgb(39, 46, 75); + color: var(--text-muted); + } + + .canvas-sidebar { + background-color: var(--background-primary); + border-color: rgb(52, 59, 88); + box-shadow: var(--input-shadow); + } + + .canvas-node-group { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(52, 59, 88); + border-width: 0px; + } + + .graph > .graph-outer { + background-color: var(--background-secondary); + color: rgb(52, 59, 88); + border: 2px solid rgba(0, 0, 0, 0); + border-top-left-radius: 8px; + border-top-right-radius: 8px; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; + } + + .graph > .graph-outer > .global-graph-icon { + background-color: rgba(0, 0, 0, 0); + color: var(--icon-color); + cursor: var(--cursor); + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + } + + .graph > .global-graph-outer > .global-graph-container { + background-color: var(--background-secondary); + border: 2px solid rgba(0, 0, 0, 0); + border-top-left-radius: 8px; + border-top-right-radius: 8px; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; + } + + footer ul li a { + color: rgb(39, 46, 75); + font-size: 12px; + font-weight: 400; + } + + .recent-notes > h3 { + color: rgb(52, 59, 88); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + } + + .recent-notes > ul.recent-ul > li { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + .recent-notes > ul.recent-ul > li .section > .desc > h3 > a { + color: var(--nav-item-color); + } + + .recent-notes > ul.recent-ul > li .section > .meta { + color: rgb(39, 46, 75); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + ul.section-ul { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + li.section-li { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + li.section-li > .section > .desc > h3 > a { + color: var(--nav-item-color); + } + + li.section-li > .section .meta { + color: rgb(39, 46, 75); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + .darkmode { + background-color: rgba(0, 0, 0, 0); + color: var(--icon-color); + cursor: var(--cursor); + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + } + + .darkmode svg { + stroke: rgb(39, 46, 75); + color: rgb(39, 46, 75); + } + + .breadcrumb-container { + background-color: rgba(0, 0, 0, 0); + color: rgb(39, 46, 75); + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + } + + .breadcrumb-element p { + color: var(--text-faint); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + #stacked-pages-container.binder-active { + border-color: rgb(52, 59, 88); + background-color: var(--background-secondary); + } + + .binder-tab { + background-color: var(--tab-container-background); + } + + .binder-tab.binder-tab-active { + border-color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="_"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task=","] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task=";"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task=":"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="."] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="'"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="@"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="&"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="#"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="%"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="`"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="+"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="<"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="="] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="|"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="~"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="$"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="0"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="1"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="2"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="3"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="4"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="5"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="6"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="7"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="8"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="9"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="a"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="A"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="B"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="C"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="D"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="e"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="E"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="F"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="g"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="G"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="h"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="H"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="j"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="J"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="K"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="L"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="m"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="M"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="n"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="N"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="o"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="O"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="P"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="q"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="Q"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="r"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="R"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="s"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="t"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="T"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="U"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="v"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="V"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="W"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="x"] { + color: rgb(39, 46, 75); + } + + li.task-list-item[data-task="X"] { + color: rgb(39, 46, 75); + } + + li.task-list-item[data-task="y"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="Y"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="z"] { + color: rgb(52, 59, 88); + } + + li.task-list-item[data-task="Z"] { + color: rgb(52, 59, 88); + } + + html { + --default-font: '"JetBrains Mono", monospace, "Inter", sans-serif'; + --font-monospace: '"JetBrains Mono", monospace, "Source Code Pro", monospace'; + } + + --current-page-slug: attr(data-slug raw-string); +} + +li.task-list-item[data-task="_"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="-"] input[type="checkbox"]::after { + background-color: rgb(255, 255, 255); + color: rgb(150, 153, 163); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task=","] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task=";"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task=":"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="!"] input[type="checkbox"]::after { + background-color: rgb(255, 255, 255); + color: rgb(150, 80, 39); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M96 64c0-17.7-14.3-32-32-32S32 46.3 32 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V64zM64 480c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M96 64c0-17.7-14.3-32-32-32S32 46.3 32 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V64zM64 480c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="?"] input[type="checkbox"]::after { + background-color: rgb(150, 80, 39); + color: rgb(90, 74, 120); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM288 352c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM288 352c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="."] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="'"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task=""] input[type="checkbox"]::after { + background-color: rgb(171, 171, 171); + color: rgb(90, 74, 120); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320 288 216zm256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H320c-35.3 0-64-28.7-64-64V320 288 216z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320 288 216zm256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H320c-35.3 0-64-28.7-64-64V320 288 216z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="@"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="*"] input[type="checkbox"]::after { + background-color: rgb(143, 94, 21); + color: rgb(143, 94, 21); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="/"] input[type="checkbox"]::after { + background-color: rgb(255, 255, 255); + color: rgb(143, 94, 21); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="&"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="#"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="%"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="`"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="+"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="<"] input[type="checkbox"]::after { + background-color: rgb(15, 75, 110); + color: rgb(52, 84, 138); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="="] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task=">"] input[type="checkbox"]::after { + background-color: rgb(52, 84, 138); + color: rgb(90, 74, 120); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M307 34.8c-11.5 5.1-19 16.6-19 29.2v64H176C78.8 128 0 206.8 0 304C0 417.3 81.5 467.9 100.2 478.1c2.5 1.4 5.3 1.9 8.1 1.9c10.9 0 19.7-8.9 19.7-19.7c0-7.5-4.3-14.4-9.8-19.5C108.8 431.9 96 414.4 96 384c0-53 43-96 96-96h96v64c0 12.6 7.4 24.1 19 29.2s25 3 34.4-5.4l160-144c6.7-6.1 10.6-14.7 10.6-23.8s-3.8-17.7-10.6-23.8l-160-144c-9.4-8.5-22.9-10.6-34.4-5.4z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M307 34.8c-11.5 5.1-19 16.6-19 29.2v64H176C78.8 128 0 206.8 0 304C0 417.3 81.5 467.9 100.2 478.1c2.5 1.4 5.3 1.9 8.1 1.9c10.9 0 19.7-8.9 19.7-19.7c0-7.5-4.3-14.4-9.8-19.5C108.8 431.9 96 414.4 96 384c0-53 43-96 96-96h96v64c0 12.6 7.4 24.1 19 29.2s25 3 34.4-5.4l160-144c6.7-6.1 10.6-14.7 10.6-23.8s-3.8-17.7-10.6-23.8l-160-144c-9.4-8.5-22.9-10.6-34.4-5.4z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="|"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="~"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="$"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="0"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="1"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="2"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="3"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="4"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="5"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="6"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="7"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="8"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="9"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="a"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="A"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="b"] input[type="checkbox"]::after { + background-color: rgb(140, 67, 81); + color: rgb(52, 84, 138); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M0 48V487.7C0 501.1 10.9 512 24.3 512c5 0 9.9-1.5 14-4.4L192 400 345.7 507.6c4.1 2.9 9 4.4 14 4.4c13.4 0 24.3-10.9 24.3-24.3V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M0 48V487.7C0 501.1 10.9 512 24.3 512c5 0 9.9-1.5 14-4.4L192 400 345.7 507.6c4.1 2.9 9 4.4 14 4.4c13.4 0 24.3-10.9 24.3-24.3V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="B"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="c"] input[type="checkbox"]::after { + background-color: rgb(140, 67, 81); + color: rgb(140, 67, 81); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2H464c26.5 0 48-21.5 48-48c0-25.3-19.5-46-44.3-47.9c7.7-8.5 12.3-19.8 12.3-32.1c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48H294.5c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7V192v48 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 320H96c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64V288c0 17.7 14.3 32 32 32z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2H464c26.5 0 48-21.5 48-48c0-25.3-19.5-46-44.3-47.9c7.7-8.5 12.3-19.8 12.3-32.1c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48H294.5c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7V192v48 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 320H96c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64V288c0 17.7 14.3 32 32 32z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="C"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="d"] input[type="checkbox"]::after { + background-color: rgb(140, 67, 81); + color: rgb(140, 67, 81); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 13a1 1 0 100 2h5a1 1 0 001-1V9a1 1 0 10-2 0v2.586l-4.293-4.293a1 1 0 00-1.414 0L8 9.586 3.707 5.293a1 1 0 00-1.414 1.414l5 5a1 1 0 001.414 0L11 9.414 14.586 13H12z' clip-rule='evenodd' /%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 13a1 1 0 100 2h5a1 1 0 001-1V9a1 1 0 10-2 0v2.586l-4.293-4.293a1 1 0 00-1.414 0L8 9.586 3.707 5.293a1 1 0 00-1.414 1.414l5 5a1 1 0 001.414 0L11 9.414 14.586 13H12z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="D"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="e"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="E"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="f"] input[type="checkbox"]::after { + background-color: rgb(140, 67, 81); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12.395 2.553a1 1 0 00-1.45-.385c-.345.23-.614.558-.822.88-.214.33-.403.713-.57 1.116-.334.804-.614 1.768-.84 2.734a31.365 31.365 0 00-.613 3.58 2.64 2.64 0 01-.945-1.067c-.328-.68-.398-1.534-.398-2.654A1 1 0 005.05 6.05 6.981 6.981 0 003 11a7 7 0 1011.95-4.95c-.592-.591-.98-.985-1.348-1.467-.363-.476-.724-1.063-1.207-2.03zM12.12 15.12A3 3 0 017 13s.879.5 2.5.5c0-1 .5-4 1.25-4.5.5 1 .786 1.293 1.371 1.879A2.99 2.99 0 0113 13a2.99 2.99 0 01-.879 2.121z' clip-rule='evenodd' /%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12.395 2.553a1 1 0 00-1.45-.385c-.345.23-.614.558-.822.88-.214.33-.403.713-.57 1.116-.334.804-.614 1.768-.84 2.734a31.365 31.365 0 00-.613 3.58 2.64 2.64 0 01-.945-1.067c-.328-.68-.398-1.534-.398-2.654A1 1 0 005.05 6.05 6.981 6.981 0 003 11a7 7 0 1011.95-4.95c-.592-.591-.98-.985-1.348-1.467-.363-.476-.724-1.063-1.207-2.03zM12.12 15.12A3 3 0 017 13s.879.5 2.5.5c0-1 .5-4 1.25-4.5.5 1 .786 1.293 1.371 1.879A2.99 2.99 0 0113 13a2.99 2.99 0 01-.879 2.121z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="F"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="g"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="G"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="h"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="H"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="i"] input[type="checkbox"]::after { + background-color: rgb(52, 84, 138); + color: rgb(15, 75, 110); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-144c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-144c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="I"] input[type="checkbox"]::after { + background-color: rgb(143, 94, 21); + color: rgb(150, 80, 39); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M272 384c9.6-31.9 29.5-59.1 49.2-86.2l0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C368 78.8 289.2 0 192 0S16 78.8 16 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4l0 0c19.8 27.1 39.7 54.4 49.2 86.2H272zM192 512c44.2 0 80-35.8 80-80V416H112v16c0 44.2 35.8 80 80 80zM112 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M272 384c9.6-31.9 29.5-59.1 49.2-86.2l0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C368 78.8 289.2 0 192 0S16 78.8 16 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4l0 0c19.8 27.1 39.7 54.4 49.2 86.2H272zM192 512c44.2 0 80-35.8 80-80V416H112v16c0 44.2 35.8 80 80 80zM112 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="j"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="J"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="k"] input[type="checkbox"]::after { + background-color: rgb(143, 94, 21); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M18 8a6 6 0 01-7.743 5.743L10 14l-1 1-1 1H6v2H2v-4l4.257-4.257A6 6 0 1118 8zm-6-4a1 1 0 100 2 2 2 0 012 2 1 1 0 102 0 4 4 0 00-4-4z' clip-rule='evenodd' /%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M18 8a6 6 0 01-7.743 5.743L10 14l-1 1-1 1H6v2H2v-4l4.257-4.257A6 6 0 1118 8zm-6-4a1 1 0 100 2 2 2 0 012 2 1 1 0 102 0 4 4 0 00-4-4z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="K"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="l"] input[type="checkbox"]::after { + background-color: rgb(90, 74, 120); + color: rgb(140, 67, 81); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="L"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="m"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="M"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="n"] input[type="checkbox"]::after { + background-color: rgb(140, 67, 81); + color: rgb(15, 75, 110); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M32 32C32 14.3 46.3 0 64 0H320c17.7 0 32 14.3 32 32s-14.3 32-32 32H290.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8s-15.7 13.3-26 13.3H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64C46.3 64 32 49.7 32 32zM160 384h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M32 32C32 14.3 46.3 0 64 0H320c17.7 0 32 14.3 32 32s-14.3 32-32 32H290.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8s-15.7 13.3-26 13.3H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64C46.3 64 32 49.7 32 32zM160 384h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="N"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="o"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="O"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="p"] input[type="checkbox"]::after { + background-color: rgb(51, 99, 92); + color: rgb(51, 99, 92); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2H464c26.5 0 48 21.5 48 48c0 25.3-19.5 46-44.3 47.9c7.7 8.5 12.3 19.8 12.3 32.1c0 23.4-16.8 42.9-38.9 47.1c4.4 7.2 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48H294.5c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3V320 272 247.1c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192H96c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2H464c26.5 0 48 21.5 48 48c0 25.3-19.5 46-44.3 47.9c7.7 8.5 12.3 19.8 12.3 32.1c0 23.4-16.8 42.9-38.9 47.1c4.4 7.2 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48H294.5c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3V320 272 247.1c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192H96c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="P"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="q"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="Q"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="r"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="R"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="s"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="S"] input[type="checkbox"]::after { + background-color: rgb(51, 99, 92); + color: rgb(51, 99, 92); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M320 96H192L144.6 24.9C137.5 14.2 145.1 0 157.9 0H354.1c12.8 0 20.4 14.2 13.3 24.9L320 96zM192 128H320c3.8 2.5 8.1 5.3 13 8.4C389.7 172.7 512 250.9 512 416c0 53-43 96-96 96H96c-53 0-96-43-96-96C0 250.9 122.3 172.7 179 136.4l0 0 0 0c4.8-3.1 9.2-5.9 13-8.4zm84.1 96c0-11.1-9-20.1-20.1-20.1s-20.1 9-20.1 20.1v6c-5.6 1.2-10.9 2.9-15.9 5.1c-15 6.8-27.9 19.4-31.1 37.7c-1.8 10.2-.8 20 3.4 29c4.2 8.8 10.7 15 17.3 19.5c11.6 7.9 26.9 12.5 38.6 16l2.2 .7c13.9 4.2 23.4 7.4 29.3 11.7c2.5 1.8 3.4 3.2 3.8 4.1c.3 .8 .9 2.6 .2 6.7c-.6 3.5-2.5 6.4-8 8.8c-6.1 2.6-16 3.9-28.8 1.9c-6-1-16.7-4.6-26.2-7.9l0 0 0 0 0 0 0 0c-2.2-.8-4.3-1.5-6.3-2.1c-10.5-3.5-21.8 2.2-25.3 12.7s2.2 21.8 12.7 25.3c1.2 .4 2.7 .9 4.4 1.5c7.9 2.7 20.3 6.9 29.8 9.1V416c0 11.1 9 20.1 20.1 20.1s20.1-9 20.1-20.1v-5.5c5.4-1 10.5-2.5 15.4-4.6c15.7-6.7 28.4-19.7 31.6-38.7c1.8-10.4 1-20.3-3-29.4c-3.9-9-10.2-15.6-16.9-20.5c-12.2-8.8-28.3-13.7-40.4-17.4l-.8-.2c-14.2-4.3-23.8-7.3-29.9-11.4c-2.6-1.8-3.4-3-3.6-3.5c-.2-.3-.7-1.6-.1-5c.3-1.9 1.9-5.2 8.2-8.1c6.4-2.9 16.4-4.5 28.6-2.6c4.3 .7 17.9 3.3 21.7 4.3c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-4.4-1.2-14.4-3.2-21-4.4V224z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M320 96H192L144.6 24.9C137.5 14.2 145.1 0 157.9 0H354.1c12.8 0 20.4 14.2 13.3 24.9L320 96zM192 128H320c3.8 2.5 8.1 5.3 13 8.4C389.7 172.7 512 250.9 512 416c0 53-43 96-96 96H96c-53 0-96-43-96-96C0 250.9 122.3 172.7 179 136.4l0 0 0 0c4.8-3.1 9.2-5.9 13-8.4zm84.1 96c0-11.1-9-20.1-20.1-20.1s-20.1 9-20.1 20.1v6c-5.6 1.2-10.9 2.9-15.9 5.1c-15 6.8-27.9 19.4-31.1 37.7c-1.8 10.2-.8 20 3.4 29c4.2 8.8 10.7 15 17.3 19.5c11.6 7.9 26.9 12.5 38.6 16l2.2 .7c13.9 4.2 23.4 7.4 29.3 11.7c2.5 1.8 3.4 3.2 3.8 4.1c.3 .8 .9 2.6 .2 6.7c-.6 3.5-2.5 6.4-8 8.8c-6.1 2.6-16 3.9-28.8 1.9c-6-1-16.7-4.6-26.2-7.9l0 0 0 0 0 0 0 0c-2.2-.8-4.3-1.5-6.3-2.1c-10.5-3.5-21.8 2.2-25.3 12.7s2.2 21.8 12.7 25.3c1.2 .4 2.7 .9 4.4 1.5c7.9 2.7 20.3 6.9 29.8 9.1V416c0 11.1 9 20.1 20.1 20.1s20.1-9 20.1-20.1v-5.5c5.4-1 10.5-2.5 15.4-4.6c15.7-6.7 28.4-19.7 31.6-38.7c1.8-10.4 1-20.3-3-29.4c-3.9-9-10.2-15.6-16.9-20.5c-12.2-8.8-28.3-13.7-40.4-17.4l-.8-.2c-14.2-4.3-23.8-7.3-29.9-11.4c-2.6-1.8-3.4-3-3.6-3.5c-.2-.3-.7-1.6-.1-5c.3-1.9 1.9-5.2 8.2-8.1c6.4-2.9 16.4-4.5 28.6-2.6c4.3 .7 17.9 3.3 21.7 4.3c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-4.4-1.2-14.4-3.2-21-4.4V224z'/%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="t"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="T"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="u"] input[type="checkbox"]::after { + background-color: rgb(51, 99, 92); + color: rgb(51, 99, 92); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 7a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0V8.414l-4.293 4.293a1 1 0 01-1.414 0L8 10.414l-4.293 4.293a1 1 0 01-1.414-1.414l5-5a1 1 0 011.414 0L11 10.586 14.586 7H12z' clip-rule='evenodd' /%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 7a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0V8.414l-4.293 4.293a1 1 0 01-1.414 0L8 10.414l-4.293 4.293a1 1 0 01-1.414-1.414l5-5a1 1 0 011.414 0L11 10.586 14.586 7H12z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="U"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="v"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="V"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="w"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="W"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="x"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="X"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="y"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="Y"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="z"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="Z"] input[type="checkbox"]::after { + background-color: rgb(213, 214, 219); + color: rgb(0, 0, 0); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +} + +li.task-list-item[data-task="-"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM3.5,7c-.55,0-1,.45-1,1s.45,1,1,1H12.5c.55,0,1-.45,1-1s-.45-1-1-1H3.5Z'/%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM3.5,7c-.55,0-1,.45-1,1s.45,1,1,1H12.5c.55,0,1-.45,1-1s-.45-1-1-1H3.5Z'/%3E%3C/g%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="!"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM6.07,3.55c-.08,.29-.09,.6-.03,.9l.86,4.56c.05,.28,.2,.52,.42,.7,.22,.18,.49,.28,.77,.28s.55-.1,.77-.28c.22-.18,.36-.43,.42-.7l.86-4.56c.06-.3,.04-.61-.03-.9-.08-.29-.22-.57-.41-.8-.19-.23-.44-.42-.71-.55-.28-.13-.58-.2-.88-.2s-.61,.07-.88,.2c-.28,.13-.52,.32-.71,.55-.19,.23-.34,.51-.41,.8Zm3.07,10.01c.28-.28,.44-.66,.44-1.06s-.16-.78-.44-1.06c-.28-.28-.66-.44-1.06-.44s-.78,.16-1.06,.44c-.28,.28-.44,.66-.44,1.06s.16,.78,.44,1.06c.28,.28,.66,.44,1.06,.44s.78-.16,1.06-.44Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM6.07,3.55c-.08,.29-.09,.6-.03,.9l.86,4.56c.05,.28,.2,.52,.42,.7,.22,.18,.49,.28,.77,.28s.55-.1,.77-.28c.22-.18,.36-.43,.42-.7l.86-4.56c.06-.3,.04-.61-.03-.9-.08-.29-.22-.57-.41-.8-.19-.23-.44-.42-.71-.55-.28-.13-.58-.2-.88-.2s-.61,.07-.88,.2c-.28,.13-.52,.32-.71,.55-.19,.23-.34,.51-.41,.8Zm3.07,10.01c.28-.28,.44-.66,.44-1.06s-.16-.78-.44-1.06c-.28-.28-.66-.44-1.06-.44s-.78,.16-1.06,.44c-.28,.28-.44,.66-.44,1.06s.16,.78,.44,1.06c.28,.28,.66,.44,1.06,.44s.78-.16,1.06-.44Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="*"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M8.91,.58c-.08-.17-.21-.32-.37-.42C8.38,.05,8.19,0,8,0s-.38,.05-.54,.16c-.16,.1-.29,.25-.37,.42l-1.93,4.12L.85,5.36c-.18,.03-.35,.1-.49,.22-.14,.12-.25,.27-.3,.45-.06,.17-.07,.36-.03,.54,.04,.18,.13,.34,.26,.48l3.15,3.23-.75,4.57c-.03,.19,0,.38,.06,.55,.07,.17,.19,.32,.35,.43,.15,.11,.33,.17,.52,.18,.19,0,.37-.03,.54-.12l3.84-2.13,3.84,2.13c.16,.09,.35,.13,.54,.12,.19-.01,.37-.07,.52-.18,.15-.11,.27-.26,.35-.43,.07-.17,.09-.36,.06-.55l-.75-4.57,3.15-3.23c.13-.13,.22-.3,.26-.48,.04-.18,.03-.37-.03-.54-.06-.17-.16-.33-.31-.45-.14-.12-.31-.2-.49-.22l-4.31-.66L8.91,.58Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M8.91,.58c-.08-.17-.21-.32-.37-.42C8.38,.05,8.19,0,8,0s-.38,.05-.54,.16c-.16,.1-.29,.25-.37,.42l-1.93,4.12L.85,5.36c-.18,.03-.35,.1-.49,.22-.14,.12-.25,.27-.3,.45-.06,.17-.07,.36-.03,.54,.04,.18,.13,.34,.26,.48l3.15,3.23-.75,4.57c-.03,.19,0,.38,.06,.55,.07,.17,.19,.32,.35,.43,.15,.11,.33,.17,.52,.18,.19,0,.37-.03,.54-.12l3.84-2.13,3.84,2.13c.16,.09,.35,.13,.54,.12,.19-.01,.37-.07,.52-.18,.15-.11,.27-.26,.35-.43,.07-.17,.09-.36,.06-.55l-.75-4.57,3.15-3.23c.13-.13,.22-.3,.26-.48,.04-.18,.03-.37-.03-.54-.06-.17-.16-.33-.31-.45-.14-.12-.31-.2-.49-.22l-4.31-.66L8.91,.58Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="<"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.75,15.5H13.25c.83,0,1.5-.67,1.5-1.5V3.5c0-.83-.67-1.5-1.5-1.5h-1.5V.5h-1.5v1.5H5.75V.5h-1.5v1.5h-1.5c-.83,0-1.5,.67-1.5,1.5V14c0,.83,.67,1.5,1.5,1.5Zm0-11.25H13.25v1.5H2.75v-1.5Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.75,15.5H13.25c.83,0,1.5-.67,1.5-1.5V3.5c0-.83-.67-1.5-1.5-1.5h-1.5V.5h-1.5v1.5H5.75V.5h-1.5v1.5h-1.5c-.83,0-1.5,.67-1.5,1.5V14c0,.83,.67,1.5,1.5,1.5Zm0-11.25H13.25v1.5H2.75v-1.5Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task=">"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M1.72,1.05c-.08-.04-.18-.06-.27-.05-.09,0-.18,.04-.26,.1-.07,.06-.13,.13-.16,.22-.03,.09-.04,.18-.02,.27l1.4,4.85c.03,.09,.08,.17,.15,.23,.07,.06,.16,.1,.25,.12l5.69,.95c.27,.05,.27,.44,0,.49l-5.69,.95c-.09,.02-.18,.06-.25,.12s-.12,.14-.15,.23l-1.4,4.85c-.02,.09-.01,.19,.02,.27,.03,.09,.09,.16,.16,.22,.07,.06,.16,.09,.26,.1,.09,0,.19,0,.27-.05l13-6.5c.08-.04,.15-.11,.2-.18,.05-.08,.07-.17,.07-.26s-.03-.18-.07-.26c-.05-.08-.12-.14-.2-.18L1.72,1.05Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M1.72,1.05c-.08-.04-.18-.06-.27-.05-.09,0-.18,.04-.26,.1-.07,.06-.13,.13-.16,.22-.03,.09-.04,.18-.02,.27l1.4,4.85c.03,.09,.08,.17,.15,.23,.07,.06,.16,.1,.25,.12l5.69,.95c.27,.05,.27,.44,0,.49l-5.69,.95c-.09,.02-.18,.06-.25,.12s-.12,.14-.15,.23l-1.4,4.85c-.02,.09-.01,.19,.02,.27,.03,.09,.09,.16,.16,.22,.07,.06,.16,.09,.26,.1,.09,0,.19,0,.27-.05l13-6.5c.08-.04,.15-.11,.2-.18,.05-.08,.07-.17,.07-.26s-.03-.18-.07-.26c-.05-.08-.12-.14-.2-.18L1.72,1.05Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="b"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M4.25,.5c-.6,0-1.17,.24-1.59,.66-.42,.42-.66,.99-.66,1.59V14.1c0,.2,.05,.39,.15,.56,.1,.17,.24,.31,.41,.41,.17,.1,.36,.15,.56,.15,.2,0,.39-.05,.56-.15l3.94-2.25c.11-.06,.24-.1,.37-.1s.26,.03,.37,.1l3.95,2.25c.17,.1,.36,.15,.56,.15,.2,0,.39-.05,.56-.15,.17-.1,.31-.24,.41-.41s.15-.36,.15-.56V2.75c0-.6-.24-1.17-.66-1.59-.42-.42-.99-.66-1.59-.66H4.25Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M4.25,.5c-.6,0-1.17,.24-1.59,.66-.42,.42-.66,.99-.66,1.59V14.1c0,.2,.05,.39,.15,.56,.1,.17,.24,.31,.41,.41,.17,.1,.36,.15,.56,.15,.2,0,.39-.05,.56-.15l3.94-2.25c.11-.06,.24-.1,.37-.1s.26,.03,.37,.1l3.95,2.25c.17,.1,.36,.15,.56,.15,.2,0,.39-.05,.56-.15,.17-.1,.31-.24,.41-.41s.15-.36,.15-.56V2.75c0-.6-.24-1.17-.66-1.59-.42-.42-.99-.66-1.59-.66H4.25Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="c"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M0,0H16V16H0V0Z'/%3E%3Cg%3E%3Cpath d='M3.33,1h-.72c-.33,0-.66,.13-.9,.35-.25,.23-.4,.54-.43,.87l-.56,6.67c-.02,.18,0,.37,.07,.54,.06,.18,.16,.34,.28,.47,.13,.14,.28,.25,.45,.32,.17,.07,.35,.11,.54,.11h1.27c.36,0,.69-.14,.94-.39,.25-.25,.39-.59,.39-.94V2.33c0-.35-.14-.7-.39-.94-.25-.25-.59-.39-.94-.39Z'/%3E%3Cpath d='M15.4,8.31l-1.79-6.34c-.08-.28-.25-.53-.48-.7-.23-.17-.52-.27-.81-.27H6.67c-.36,0-.69,.14-.94,.39-.25,.25-.39,.59-.39,.94v6.54c0,.53,.32,1.02,.81,1.25,.79,.37,1.38,.82,1.62,1.22,.36,.6,.53,1.78,.57,2.65,0,.06,0,.12,.01,.18,.06,.41,.34,.72,.73,.8,.07,.01,.14,.02,.21,.02,.8,0,1.73-.83,2.12-1.48,.29-.48,.41-1.09,.36-1.84-.03-.55-.18-1.05-.33-1.55l-.04-.12h2.72c.21,0,.41-.05,.6-.14,.18-.09,.34-.23,.47-.39,.12-.17,.21-.35,.24-.55,.04-.2,.03-.41-.03-.61Zm-6.4,5.75h0Z'/%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M0,0H16V16H0V0Z'/%3E%3Cg%3E%3Cpath d='M3.33,1h-.72c-.33,0-.66,.13-.9,.35-.25,.23-.4,.54-.43,.87l-.56,6.67c-.02,.18,0,.37,.07,.54,.06,.18,.16,.34,.28,.47,.13,.14,.28,.25,.45,.32,.17,.07,.35,.11,.54,.11h1.27c.36,0,.69-.14,.94-.39,.25-.25,.39-.59,.39-.94V2.33c0-.35-.14-.7-.39-.94-.25-.25-.59-.39-.94-.39Z'/%3E%3Cpath d='M15.4,8.31l-1.79-6.34c-.08-.28-.25-.53-.48-.7-.23-.17-.52-.27-.81-.27H6.67c-.36,0-.69,.14-.94,.39-.25,.25-.39,.59-.39,.94v6.54c0,.53,.32,1.02,.81,1.25,.79,.37,1.38,.82,1.62,1.22,.36,.6,.53,1.78,.57,2.65,0,.06,0,.12,.01,.18,.06,.41,.34,.72,.73,.8,.07,.01,.14,.02,.21,.02,.8,0,1.73-.83,2.12-1.48,.29-.48,.41-1.09,.36-1.84-.03-.55-.18-1.05-.33-1.55l-.04-.12h2.72c.21,0,.41-.05,.6-.14,.18-.09,.34-.23,.47-.39,.12-.17,.21-.35,.24-.55,.04-.2,.03-.41-.03-.61Zm-6.4,5.75h0Z'/%3E%3C/g%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="d"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M10,11c-.27,0-.52,.11-.71,.29-.19,.19-.29,.44-.29,.71s.11,.52,.29,.71c.19,.19,.44,.29,.71,.29h5c.27,0,.52-.11,.71-.29,.19-.19,.29-.44,.29-.71V7c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v2.59l-4.29-4.29c-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29l-2.29,2.29L1.71,3.29c-.19-.18-.44-.28-.7-.28-.26,0-.51,.11-.7,.29S.01,3.74,.01,4c0,.26,.1,.51,.28,.7l5,5c.19,.19,.44,.29,.71,.29s.52-.11,.71-.29l2.29-2.29,3.59,3.59h-2.59Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M10,11c-.27,0-.52,.11-.71,.29-.19,.19-.29,.44-.29,.71s.11,.52,.29,.71c.19,.19,.44,.29,.71,.29h5c.27,0,.52-.11,.71-.29,.19-.19,.29-.44,.29-.71V7c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v2.59l-4.29-4.29c-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29l-2.29,2.29L1.71,3.29c-.19-.18-.44-.28-.7-.28-.26,0-.51,.11-.7,.29S.01,3.74,.01,4c0,.26,.1,.51,.28,.7l5,5c.19,.19,.44,.29,.71,.29s.52-.11,.71-.29l2.29-2.29,3.59,3.59h-2.59Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="I"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M9,1c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v1c0,.27,.11,.52,.29,.71,.19,.19,.44,.29,.71,.29s.52-.11,.71-.29c.19-.19,.29-.44,.29-.71V1Zm4.66,2.76c.18-.19,.28-.44,.28-.7,0-.26-.11-.51-.29-.7s-.44-.29-.7-.29c-.26,0-.51,.1-.7,.28l-.71,.71c-.18,.19-.28,.44-.28,.7,0,.26,.11,.51,.29,.7s.44,.29,.7,.29c.26,0,.51-.1,.7-.28l.71-.71Zm2.34,4.24c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29h-1c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h1c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71ZM3.05,4.46c.09,.1,.2,.17,.32,.22,.12,.05,.25,.08,.39,.08,.13,0,.26-.02,.39-.07,.12-.05,.23-.12,.33-.22,.09-.09,.17-.21,.22-.33,.05-.12,.08-.25,.07-.39,0-.13-.03-.26-.08-.39-.05-.12-.13-.23-.22-.32l-.71-.71c-.19-.18-.44-.28-.7-.28-.26,0-.51,.11-.7,.29s-.29,.44-.29,.7c0,.26,.1,.51,.28,.7l.71,.71Zm-.05,3.54c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29H1c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h1c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71Zm3,6v-1h4v1c0,.53-.21,1.04-.59,1.41-.38,.38-.88,.59-1.41,.59s-1.04-.21-1.41-.59c-.38-.38-.59-.88-.59-1.41Zm4-2c.02-.34,.21-.65,.48-.86,.65-.51,1.13-1.22,1.36-2.02,.23-.8,.21-1.65-.06-2.43-.27-.79-.78-1.47-1.46-1.95-.68-.48-1.49-.74-2.32-.74s-1.64,.26-2.32,.74c-.68,.48-1.19,1.16-1.46,1.95-.27,.79-.29,1.64-.06,2.43,.23,.8,.71,1.5,1.36,2.02,.27,.21,.46,.52,.48,.86h4Z'/%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M9,1c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v1c0,.27,.11,.52,.29,.71,.19,.19,.44,.29,.71,.29s.52-.11,.71-.29c.19-.19,.29-.44,.29-.71V1Zm4.66,2.76c.18-.19,.28-.44,.28-.7,0-.26-.11-.51-.29-.7s-.44-.29-.7-.29c-.26,0-.51,.1-.7,.28l-.71,.71c-.18,.19-.28,.44-.28,.7,0,.26,.11,.51,.29,.7s.44,.29,.7,.29c.26,0,.51-.1,.7-.28l.71-.71Zm2.34,4.24c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29h-1c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h1c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71ZM3.05,4.46c.09,.1,.2,.17,.32,.22,.12,.05,.25,.08,.39,.08,.13,0,.26-.02,.39-.07,.12-.05,.23-.12,.33-.22,.09-.09,.17-.21,.22-.33,.05-.12,.08-.25,.07-.39,0-.13-.03-.26-.08-.39-.05-.12-.13-.23-.22-.32l-.71-.71c-.19-.18-.44-.28-.7-.28-.26,0-.51,.11-.7,.29s-.29,.44-.29,.7c0,.26,.1,.51,.28,.7l.71,.71Zm-.05,3.54c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29H1c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h1c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71Zm3,6v-1h4v1c0,.53-.21,1.04-.59,1.41-.38,.38-.88,.59-1.41,.59s-1.04-.21-1.41-.59c-.38-.38-.59-.88-.59-1.41Zm4-2c.02-.34,.21-.65,.48-.86,.65-.51,1.13-1.22,1.36-2.02,.23-.8,.21-1.65-.06-2.43-.27-.79-.78-1.47-1.46-1.95-.68-.48-1.49-.74-2.32-.74s-1.64,.26-2.32,.74c-.68,.48-1.19,1.16-1.46,1.95-.27,.79-.29,1.64-.06,2.43,.23,.8,.71,1.5,1.36,2.02,.27,.21,.46,.52,.48,.86h4Z'/%3E%3C/g%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="l"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M8,.12c-1.64,0-3.21,.65-4.37,1.81-1.16,1.16-1.81,2.73-1.81,4.37,0,1.34,.44,2.64,1.25,3.71,0,0,.17,.22,.2,.25l4.74,5.6,4.75-5.6s.19-.25,.19-.25h0c.81-1.07,1.25-2.37,1.25-3.71,0-1.64-.65-3.21-1.81-4.37C11.21,.78,9.64,.13,8,.12Zm0,8.44c-.45,0-.88-.13-1.25-.38-.37-.25-.66-.6-.83-1.01-.17-.41-.21-.86-.13-1.3,.09-.44,.3-.84,.62-1.15,.31-.31,.72-.53,1.15-.62,.44-.09,.89-.04,1.3,.13,.41,.17,.76,.46,1.01,.83,.25,.37,.38,.81,.38,1.25,0,.6-.24,1.17-.66,1.59-.42,.42-.99,.66-1.59,.66Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M8,.12c-1.64,0-3.21,.65-4.37,1.81-1.16,1.16-1.81,2.73-1.81,4.37,0,1.34,.44,2.64,1.25,3.71,0,0,.17,.22,.2,.25l4.74,5.6,4.75-5.6s.19-.25,.19-.25h0c.81-1.07,1.25-2.37,1.25-3.71,0-1.64-.65-3.21-1.81-4.37C11.21,.78,9.64,.13,8,.12Zm0,8.44c-.45,0-.88-.13-1.25-.38-.37-.25-.66-.6-.83-1.01-.17-.41-.21-.86-.13-1.3,.09-.44,.3-.84,.62-1.15,.31-.31,.72-.53,1.15-.62,.44-.09,.89-.04,1.3,.13,.41,.17,.76,.46,1.01,.83,.25,.37,.38,.81,.38,1.25,0,.6-.24,1.17-.66,1.59-.42,.42-.99,.66-1.59,.66Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="p"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M0,16H16V0H0V16Z'/%3E%3Cg%3E%3Cpath d='M3.33,15h-.72c-.33,0-.66-.13-.9-.35-.25-.23-.4-.54-.43-.87L.73,7.11c-.02-.18,0-.37,.07-.54,.06-.18,.16-.34,.28-.47,.13-.14,.28-.25,.45-.32,.17-.07,.35-.11,.54-.11h1.27c.36,0,.69,.14,.94,.39,.25,.25,.39,.59,.39,.94v6.67c0,.35-.14,.7-.39,.94-.25,.25-.59,.39-.94,.39Z'/%3E%3Cpath d='M15.4,7.69l-1.79,6.34c-.08,.28-.25,.53-.48,.7-.23,.17-.52,.27-.81,.27H6.67c-.36,0-.69-.14-.94-.39-.25-.25-.39-.59-.39-.94V7.13c0-.53,.32-1.02,.81-1.25,.79-.37,1.38-.82,1.62-1.22,.36-.6,.53-1.78,.57-2.65,0-.06,0-.12,.01-.18,.06-.41,.34-.72,.73-.8,.07-.01,.14-.02,.21-.02,.8,0,1.73,.83,2.12,1.48,.29,.48,.41,1.09,.36,1.84-.03,.55-.18,1.05-.33,1.55l-.04,.12h2.72c.21,0,.41,.05,.6,.14,.18,.09,.34,.23,.47,.39,.12,.17,.21,.35,.24,.55,.04,.2,.03,.41-.03,.61ZM9,1.94h0Z'/%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M0,16H16V0H0V16Z'/%3E%3Cg%3E%3Cpath d='M3.33,15h-.72c-.33,0-.66-.13-.9-.35-.25-.23-.4-.54-.43-.87L.73,7.11c-.02-.18,0-.37,.07-.54,.06-.18,.16-.34,.28-.47,.13-.14,.28-.25,.45-.32,.17-.07,.35-.11,.54-.11h1.27c.36,0,.69,.14,.94,.39,.25,.25,.39,.59,.39,.94v6.67c0,.35-.14,.7-.39,.94-.25,.25-.59,.39-.94,.39Z'/%3E%3Cpath d='M15.4,7.69l-1.79,6.34c-.08,.28-.25,.53-.48,.7-.23,.17-.52,.27-.81,.27H6.67c-.36,0-.69-.14-.94-.39-.25-.25-.39-.59-.39-.94V7.13c0-.53,.32-1.02,.81-1.25,.79-.37,1.38-.82,1.62-1.22,.36-.6,.53-1.78,.57-2.65,0-.06,0-.12,.01-.18,.06-.41,.34-.72,.73-.8,.07-.01,.14-.02,.21-.02,.8,0,1.73,.83,2.12,1.48,.29,.48,.41,1.09,.36,1.84-.03,.55-.18,1.05-.33,1.55l-.04,.12h2.72c.21,0,.41,.05,.6,.14,.18,.09,.34,.23,.47,.39,.12,.17,.21,.35,.24,.55,.04,.2,.03,.41-.03,.61ZM9,1.94h0Z'/%3E%3C/g%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="u"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M10,5c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h5c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71v5c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29s-.52-.11-.71-.29c-.19-.19-.29-.44-.29-.71v-2.59l-4.29,4.29c-.19,.19-.44,.29-.71,.29s-.52-.11-.71-.29l-2.29-2.29L1.71,12.71c-.19,.18-.44,.28-.7,.28-.26,0-.51-.11-.7-.29S.01,12.26,.01,12c0-.26,.1-.51,.28-.7L5.29,6.29c.19-.19,.44-.29,.71-.29s.52,.11,.71,.29l2.29,2.29,3.59-3.59h-2.59Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M10,5c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h5c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71v5c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29s-.52-.11-.71-.29c-.19-.19-.29-.44-.29-.71v-2.59l-4.29,4.29c-.19,.19-.44,.29-.71,.29s-.52-.11-.71-.29l-2.29-2.29L1.71,12.71c-.19,.18-.44,.28-.7,.28-.26,0-.51-.11-.7-.29S.01,12.26,.01,12c0-.26,.1-.51,.28-.7L5.29,6.29c.19-.19,.44-.29,.71-.29s.52,.11,.71,.29l2.29,2.29,3.59-3.59h-2.59Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="?"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM4.84,3.66c-.32,.48-.09,1.14,.44,1.37,.23,.1,.49,.1,.72,0,.17-.07,.31-.18,.41-.34,.31-.49,.82-.89,1.6-.89,1.72,0,2.06,1.61,1.45,2.47-.36,.51-.87,.91-1.33,1.37-.28,.28-.55,.58-.74,.93-.19,.33-.27,.69-.31,1.03-.04,.31,.08,.59,.28,.79,.18,.18,.43,.29,.71,.29,.49,0,.89-.38,.95-.87,.04-.3,.1-.45,.2-.63,.41-.76,1.18-1.12,1.98-2.3,.72-1.07,.45-2.5-.02-3.27-.55-.89-1.62-1.61-3.19-1.61-1.43,0-2.51,.7-3.15,1.66Zm3.16,11.01c.73,0,1.33-.6,1.33-1.33s-.6-1.33-1.33-1.33-1.33,.6-1.33,1.33,.6,1.33,1.33,1.33Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM4.84,3.66c-.32,.48-.09,1.14,.44,1.37,.23,.1,.49,.1,.72,0,.17-.07,.31-.18,.41-.34,.31-.49,.82-.89,1.6-.89,1.72,0,2.06,1.61,1.45,2.47-.36,.51-.87,.91-1.33,1.37-.28,.28-.55,.58-.74,.93-.19,.33-.27,.69-.31,1.03-.04,.31,.08,.59,.28,.79,.18,.18,.43,.29,.71,.29,.49,0,.89-.38,.95-.87,.04-.3,.1-.45,.2-.63,.41-.76,1.18-1.12,1.98-2.3,.72-1.07,.45-2.5-.02-3.27-.55-.89-1.62-1.61-3.19-1.61-1.43,0-2.51,.7-3.15,1.66Zm3.16,11.01c.73,0,1.33-.6,1.33-1.33s-.6-1.33-1.33-1.33-1.33,.6-1.33,1.33,.6,1.33,1.33,1.33Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="i"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M10.67,13v-1.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-1V5.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-3.33c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h1v3.33h-1c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h4.67c.1,0,.18-.03,.24-.09s.09-.14,.09-.24Zm-1.33-9.33v-1.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-2c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h2c.1,0,.18-.03,.24-.09s.09-.14,.09-.24Zm6.67,4.33c0,1.45-.36,2.79-1.07,4.02-.72,1.23-1.69,2.2-2.91,2.91-1.23,.72-2.56,1.07-4.02,1.07s-2.79-.36-4.02-1.07c-1.23-.72-2.2-1.69-2.91-2.91-.72-1.23-1.07-2.56-1.07-4.02S.36,5.21,1.07,3.98c.72-1.23,1.69-2.2,2.91-2.91,1.23-.72,2.56-1.07,4.02-1.07s2.79,.36,4.02,1.07c1.23,.72,2.2,1.69,2.91,2.91,.72,1.23,1.07,2.56,1.07,4.02Z'/%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M10.67,13v-1.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-1V5.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-3.33c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h1v3.33h-1c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h4.67c.1,0,.18-.03,.24-.09s.09-.14,.09-.24Zm-1.33-9.33v-1.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-2c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h2c.1,0,.18-.03,.24-.09s.09-.14,.09-.24Zm6.67,4.33c0,1.45-.36,2.79-1.07,4.02-.72,1.23-1.69,2.2-2.91,2.91-1.23,.72-2.56,1.07-4.02,1.07s-2.79-.36-4.02-1.07c-1.23-.72-2.2-1.69-2.91-2.91-.72-1.23-1.07-2.56-1.07-4.02S.36,5.21,1.07,3.98c.72-1.23,1.69-2.2,2.91-2.91,1.23-.72,2.56-1.07,4.02-1.07s2.79,.36,4.02,1.07c1.23,.72,2.2,1.69,2.91,2.91,.72,1.23,1.07,2.56,1.07,4.02Z'/%3E%3C/g%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="S"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M6.43,5.42c.15-.1,.35-.2,.57-.27v1.7c-.2-.06-.39-.15-.57-.27-.36-.24-.43-.47-.43-.58s.07-.34,.43-.58Zm2.57,5.43v-1.7c.22,.07,.41,.16,.57,.27,.36,.24,.43,.47,.43,.58s-.07,.34-.43,.58c-.18,.11-.37,.2-.57,.27Z'/%3E%3Cpath class='cls-2' d='M8,16c2.12,0,4.16-.84,5.66-2.34,1.5-1.5,2.34-3.54,2.34-5.66s-.84-4.16-2.34-5.66c-1.5-1.5-3.54-2.34-5.66-2.34S3.84,.84,2.34,2.34C.84,3.84,0,5.88,0,8s.84,4.16,2.34,5.66c1.5,1.5,3.54,2.34,5.66,2.34Zm1-13c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v.09c-.6,.11-1.17,.33-1.68,.66-.72,.48-1.32,1.25-1.32,2.25s.6,1.76,1.32,2.25c.48,.32,1.05,.55,1.68,.66v1.94c-.39-.13-.68-.32-.84-.5-.08-.1-.19-.19-.31-.25-.12-.06-.25-.1-.38-.11s-.27,0-.4,.05c-.13,.04-.25,.11-.35,.2-.1,.09-.18,.19-.24,.32-.06,.12-.09,.25-.1,.38,0,.13,.01,.27,.06,.39,.05,.13,.12,.24,.21,.34,.56,.65,1.41,1.08,2.35,1.25v.09c0,.27,.11,.52,.29,.71,.19,.19,.44,.29,.71,.29s.52-.11,.71-.29c.19-.19,.29-.44,.29-.71v-.09c.6-.11,1.17-.33,1.68-.66,.72-.48,1.32-1.26,1.32-2.25s-.6-1.77-1.32-2.25c-.51-.33-1.08-.56-1.68-.66v-1.94c.39,.13,.68,.32,.84,.5,.09,.1,.19,.18,.31,.25,.12,.06,.25,.1,.38,.11,.13,.01,.26,0,.39-.05,.13-.04,.24-.11,.34-.19,.1-.09,.18-.19,.24-.31,.06-.12,.09-.25,.1-.38,0-.13,0-.26-.05-.39-.04-.13-.11-.24-.2-.34-.56-.65-1.41-1.08-2.35-1.25v-.09Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M6.43,5.42c.15-.1,.35-.2,.57-.27v1.7c-.2-.06-.39-.15-.57-.27-.36-.24-.43-.47-.43-.58s.07-.34,.43-.58Zm2.57,5.43v-1.7c.22,.07,.41,.16,.57,.27,.36,.24,.43,.47,.43,.58s-.07,.34-.43,.58c-.18,.11-.37,.2-.57,.27Z'/%3E%3Cpath class='cls-2' d='M8,16c2.12,0,4.16-.84,5.66-2.34,1.5-1.5,2.34-3.54,2.34-5.66s-.84-4.16-2.34-5.66c-1.5-1.5-3.54-2.34-5.66-2.34S3.84,.84,2.34,2.34C.84,3.84,0,5.88,0,8s.84,4.16,2.34,5.66c1.5,1.5,3.54,2.34,5.66,2.34Zm1-13c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v.09c-.6,.11-1.17,.33-1.68,.66-.72,.48-1.32,1.25-1.32,2.25s.6,1.76,1.32,2.25c.48,.32,1.05,.55,1.68,.66v1.94c-.39-.13-.68-.32-.84-.5-.08-.1-.19-.19-.31-.25-.12-.06-.25-.1-.38-.11s-.27,0-.4,.05c-.13,.04-.25,.11-.35,.2-.1,.09-.18,.19-.24,.32-.06,.12-.09,.25-.1,.38,0,.13,.01,.27,.06,.39,.05,.13,.12,.24,.21,.34,.56,.65,1.41,1.08,2.35,1.25v.09c0,.27,.11,.52,.29,.71,.19,.19,.44,.29,.71,.29s.52-.11,.71-.29c.19-.19,.29-.44,.29-.71v-.09c.6-.11,1.17-.33,1.68-.66,.72-.48,1.32-1.26,1.32-2.25s-.6-1.77-1.32-2.25c-.51-.33-1.08-.56-1.68-.66v-1.94c.39,.13,.68,.32,.84,.5,.09,.1,.19,.18,.31,.25,.12,.06,.25,.1,.38,.11,.13,.01,.26,0,.39-.05,.13-.04,.24-.11,.34-.19,.1-.09,.18-.19,.24-.31,.06-.12,.09-.25,.1-.38,0-.13,0-.26-.05-.39-.04-.13-.11-.24-.2-.34-.56-.65-1.41-1.08-2.35-1.25v-.09Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="n"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.75,14.75c-.41,0-.77-.15-1.06-.44-.29-.29-.44-.65-.44-1.06V2.75c0-.41,.15-.77,.44-1.06,.29-.29,.65-.44,1.06-.44H13.25c.41,0,.77,.15,1.06,.44,.29,.29,.44,.65,.44,1.06v7.5l-4.5,4.5H2.75Zm4.5-5.25c.21,0,.39-.07,.53-.22,.14-.14,.22-.32,.22-.53s-.07-.39-.22-.53c-.14-.14-.32-.22-.53-.22h-2.25c-.21,0-.39,.07-.53,.22-.14,.14-.22,.32-.22,.53s.07,.39,.22,.53c.14,.14,.32,.22,.53,.22h2.25Zm3.75-3c.21,0,.39-.07,.53-.22,.14-.14,.22-.32,.22-.53s-.07-.39-.22-.53c-.14-.14-.32-.22-.53-.22H5c-.21,0-.39,.07-.53,.22-.14,.14-.22,.32-.22,.53s.07,.39,.22,.53,.32,.22,.53,.22h6Zm-1.5,6.75l3.75-3.75h-3c-.21,0-.39,.07-.53,.22s-.22,.32-.22,.53v3Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.75,14.75c-.41,0-.77-.15-1.06-.44-.29-.29-.44-.65-.44-1.06V2.75c0-.41,.15-.77,.44-1.06,.29-.29,.65-.44,1.06-.44H13.25c.41,0,.77,.15,1.06,.44,.29,.29,.44,.65,.44,1.06v7.5l-4.5,4.5H2.75Zm4.5-5.25c.21,0,.39-.07,.53-.22,.14-.14,.22-.32,.22-.53s-.07-.39-.22-.53c-.14-.14-.32-.22-.53-.22h-2.25c-.21,0-.39,.07-.53,.22-.14,.14-.22,.32-.22,.53s.07,.39,.22,.53c.14,.14,.32,.22,.53,.22h2.25Zm3.75-3c.21,0,.39-.07,.53-.22,.14-.14,.22-.32,.22-.53s-.07-.39-.22-.53c-.14-.14-.32-.22-.53-.22H5c-.21,0-.39,.07-.53,.22-.14,.14-.22,.32-.22,.53s.07,.39,.22,.53,.32,.22,.53,.22h6Zm-1.5,6.75l3.75-3.75h-3c-.21,0-.39,.07-.53,.22s-.22,.32-.22,.53v3Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task=""] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.46,4.19c.94-1.01,2.35-1.53,4.21-1.53h.67v1.88l-.54,.11c-.91,.18-1.55,.54-1.89,1.07-.18,.28-.28,.61-.29,.94h2.05c.18,0,.35,.07,.47,.2,.13,.13,.2,.29,.2,.47v4.67c0,.74-.6,1.33-1.33,1.33H2c-.18,0-.35-.07-.47-.2-.13-.12-.2-.29-.2-.47V7.39c0-.07-.13-1.83,1.13-3.19ZM13.33,13.33h-4c-.18,0-.35-.07-.47-.2-.13-.12-.2-.29-.2-.47V7.39c0-.07-.13-1.83,1.13-3.19,.94-1.01,2.35-1.53,4.21-1.53h.67v1.88l-.54,.11c-.91,.18-1.55,.54-1.89,1.07-.18,.28-.28,.61-.29,.94h2.05c.18,0,.35,.07,.47,.2,.12,.13,.2,.29,.2,.47v4.67c0,.74-.6,1.33-1.33,1.33Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.46,4.19c.94-1.01,2.35-1.53,4.21-1.53h.67v1.88l-.54,.11c-.91,.18-1.55,.54-1.89,1.07-.18,.28-.28,.61-.29,.94h2.05c.18,0,.35,.07,.47,.2,.13,.13,.2,.29,.2,.47v4.67c0,.74-.6,1.33-1.33,1.33H2c-.18,0-.35-.07-.47-.2-.13-.12-.2-.29-.2-.47V7.39c0-.07-.13-1.83,1.13-3.19ZM13.33,13.33h-4c-.18,0-.35-.07-.47-.2-.13-.12-.2-.29-.2-.47V7.39c0-.07-.13-1.83,1.13-3.19,.94-1.01,2.35-1.53,4.21-1.53h.67v1.88l-.54,.11c-.91,.18-1.55,.54-1.89,1.07-.18,.28-.28,.61-.29,.94h2.05c.18,0,.35,.07,.47,.2,.12,.13,.2,.29,.2,.47v4.67c0,.74-.6,1.33-1.33,1.33Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +li.task-list-item[data-task="/"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M13.66,13.66c-1.45,1.45-3.45,2.34-5.66,2.34C3.58,16,0,12.42,0,8S3.58,0,8,0c2.17,0,4.15,.87,5.59,2.28,.06,.06,.12,.12,.18,.18,1.37,1.43,2.22,3.36,2.23,5.5,0,.03,0,.07,0,.1-.01,2.19-.91,4.17-2.34,5.6Zm-1.41-1.41c-1.09,1.09-2.59,1.76-4.24,1.76-3.31,0-6-2.69-6-6S4.69,2,8,2v6l4.24,4.24Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M13.66,13.66c-1.45,1.45-3.45,2.34-5.66,2.34C3.58,16,0,12.42,0,8S3.58,0,8,0c2.17,0,4.15,.87,5.59,2.28,.06,.06,.12,.12,.18,.18,1.37,1.43,2.22,3.36,2.23,5.5,0,.03,0,.07,0,.1-.01,2.19-.91,4.17-2.34,5.6Zm-1.41-1.41c-1.09,1.09-2.59,1.76-4.24,1.76-3.31,0-6-2.69-6-6S4.69,2,8,2v6l4.24,4.24Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; +} + +.callout[data-callout="note"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z'/%3E%3Cpath d='m15 5 4 4'/%3E%3C/svg%3E"); +} +.callout[data-callout="abstract"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='8' height='4' x='8' y='2' rx='1' ry='1'/%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/%3E%3Cpath d='M12 11h4'/%3E%3Cpath d='M12 16h4'/%3E%3Cpath d='M8 11h.01'/%3E%3Cpath d='M8 16h.01'/%3E%3C/svg%3E"); +} +.callout[data-callout="info"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E"); +} +.callout[data-callout="todo"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); +} +.callout[data-callout="tip"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4'/%3E%3C/svg%3E"); +} +.callout[data-callout="success"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); +} +.callout[data-callout="question"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E"); +} +.callout[data-callout="warning"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E"); +} +.callout[data-callout="danger"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z'/%3E%3C/svg%3E"); +} +.callout[data-callout="failure"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E"); +} +.callout[data-callout="bug"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20v-9'/%3E%3Cpath d='M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z'/%3E%3Cpath d='M14.12 3.88 16 2'/%3E%3Cpath d='M21 21a4 4 0 0 0-3.81-4'/%3E%3Cpath d='M21 5a4 4 0 0 1-3.55 3.97'/%3E%3Cpath d='M22 13h-4'/%3E%3Cpath d='M3 21a4 4 0 0 1 3.81-4'/%3E%3Cpath d='M3 5a4 4 0 0 0 3.55 3.97'/%3E%3Cpath d='M6 13H2'/%3E%3Cpath d='m8 2 1.88 1.88'/%3E%3Cpath d='M9 7.13V6a3 3 0 1 1 6 0v1.13'/%3E%3C/svg%3E"); +} +.callout[data-callout="example"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h.01'/%3E%3Cpath d='M3 12h.01'/%3E%3Cpath d='M3 19h.01'/%3E%3Cpath d='M8 5h13'/%3E%3Cpath d='M8 12h13'/%3E%3Cpath d='M8 19h13'/%3E%3C/svg%3E"); +} +.callout[data-callout="quote"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z'/%3E%3Cpath d='M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z'/%3E%3C/svg%3E"); +} + +html[saved-theme="dark"] { + body { + body[data-slug], + body[data-slug] .page > div#quartz-body, + .page > div#quartz-body div.center, + .page > div#quartz-body footer { + background-color: var(--background-primary); + color: rgb(192, 202, 245); + } + + .page > div#quartz-body div.sidebar { + background-color: var(--background-secondary); + color: rgb(192, 202, 245); + } + + body[data-slug] div#quartz-root.page, + .page > div#quartz-body div.sidebar.left, + .page > div#quartz-body div.sidebar.left:has(.explorer), + .page > div#quartz-body div.sidebar.left .explorer .explorer-content { + background-color: var(--tab-container-background); + color: rgb(192, 202, 245); + } + + .page > div#quartz-body div.sidebar.right { + background-color: var(--tab-container-background); + color: rgb(192, 202, 245); + border-left: 0px rgb(41, 46, 66); + } + + .page > div#quartz-body div.sidebar.left { + border-right: 1px solid rgb(41, 46, 66); + } + + div#quartz-root { + background-color: var(--background-primary); + color: var(--text-normal); + } + + .note-properties.metadata-container { + background-color: var(--metadata-background); + color: var(--text-muted); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px 0px 32px; + margin-block-end: 32px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 8px 0px; + padding-block-end: 8px; + padding-block-start: 8px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .metadata-container { + background-color: var(--metadata-background); + color: var(--text-muted); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px 0px 32px; + margin-block-end: 32px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 8px 0px; + padding-block-end: 8px; + padding-block-start: 8px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .note-properties-table { + background-color: rgba(0, 0, 0, 0); + color: rgb(169, 177, 214); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .metadata-container .metadata-property { + background-color: var(--metadata-property-background); + color: rgb(169, 177, 214); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 6px; + border-top-right-radius: 6px; + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + display: flex; + } + + .metadata-property-key { + color: rgb(169, 177, 214); + font-family: var(--metadata-label-font); + font-size: 16px; + font-weight: 400; + } + + .metadata-property-value { + color: rgb(169, 177, 214); + font-family: var(--metadata-input-font); + font-size: 16px; + } + + .note-properties { + background-color: var(--metadata-background); + border-color: rgb(41, 46, 66); + border-radius: 0px; + } + + .note-properties-key { + color: rgb(169, 177, 214); + font-weight: 400; + } + + .note-properties-value { + color: rgb(169, 177, 214); + } + + .note-properties-link { + color: rgb(169, 177, 214); + } + + .note-properties-tags { + background-color: var(--pill-background); + color: var(--pill-color); + border-radius: 28px; + } + + .note-properties-row { + border-color: rgb(169, 177, 214); + } + + ol.overflow { + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + a.external-link, + footer a { + background-color: rgba(0, 0, 0, 0); + color: var(--link-external-color); + cursor: var(--cursor-link); + filter: var(--link-external-filter); + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(187, 154, 247) none 0px; + text-decoration: underline; + text-decoration-color: rgb(187, 154, 247); + text-decoration-line: var(--link-external-decoration); + text-decoration-style: solid; + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + a.internal-link, + .breadcrumb-container .breadcrumb-element > a { + background-color: rgba(0, 0, 0, 0); + color: var(--link-color); + cursor: var(--cursor-link); + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(187, 154, 247) none 0px; + text-decoration: underline; + text-decoration-color: rgb(187, 154, 247); + text-decoration-line: var(--link-decoration); + text-decoration-style: solid; + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + a.internal-link.broken { + background-color: rgba(0, 0, 0, 0); + color: var(--link-unresolved-color); + cursor: var(--cursor-link); + filter: var(--link-unresolved-filter); + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(187, 154, 247) none 0px; + text-decoration: underline oklch(0.823902 0.103065 235.337 / 0.3); + text-decoration-color: var(--link-unresolved-decoration-color); + text-decoration-line: var(--link-decoration); + text-decoration-style: var(--link-unresolved-decoration-style); + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + a.external-link:hover, + footer a:hover { + text-decoration: underline rgb(166, 138, 249); + text-decoration-color: rgb(166, 138, 249); + text-decoration-line: underline; + text-decoration-style: solid; + color: rgb(166, 138, 249); + } + + a.internal-link:hover, + .breadcrumb-container .breadcrumb-element > a:hover { + text-decoration-color: rgb(166, 138, 249); + text-decoration-line: underline; + text-decoration-style: solid; + color: rgb(166, 138, 249); + } + + .backlinks { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + padding-top: var(--size-4-1); + padding-bottom: max(var(--safe-area-inset-bottom), var(--size-4-8)); + padding-left: 12px; + padding-right: 12px; + padding-block-end: 32px; + padding-block-start: 4px; + padding-inline-end: var(--size-4-3); + padding-inline-start: var(--size-4-3); + } + + .backlinks ul li { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .backlinks ul li a { + color: var(--nav-heading-color); + } + + p { + background-color: rgba(0, 0, 0, 0); + color: var(--text-muted); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(169, 177, 214) none 0px; + text-decoration: rgb(218, 218, 218); + text-decoration-color: rgb(169, 177, 214); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: none; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > strong, + strong { + background-color: rgba(0, 0, 0, 0); + color: var(--bold-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: calc(var(--font-weight) + var(--bold-modifier)); + outline: rgb(125, 207, 255) none 0px; + text-decoration: rgb(218, 218, 218); + text-decoration-color: rgb(125, 207, 255); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > b, + b { + background-color: rgba(0, 0, 0, 0); + color: var(--bold-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: calc(var(--font-weight) + var(--bold-modifier)); + outline: rgb(125, 207, 255) none 0px; + text-decoration: rgb(218, 218, 218); + text-decoration-color: rgb(125, 207, 255); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > em, + em { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(125, 207, 255) none 0px; + text-decoration: rgb(218, 218, 218); + text-decoration-color: rgb(125, 207, 255); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > i, + i { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(125, 207, 255) none 0px; + text-decoration: rgb(218, 218, 218); + text-decoration-color: rgb(125, 207, 255); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > u, + u { + background-color: rgba(0, 0, 0, 0); + color: rgb(218, 218, 218); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + text-decoration: underline rgb(218, 218, 218); + text-decoration-color: rgb(218, 218, 218); + text-decoration-line: underline; + text-decoration-style: solid; + transform: none; + user-select: none; + animation-name: none; + animation-duration: auto; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > s, + s { + background-color: rgba(0, 0, 0, 0); + color: rgb(218, 218, 218); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + text-decoration: line-through rgb(218, 218, 218); + text-decoration-color: rgb(218, 218, 218); + text-decoration-line: line-through; + text-decoration-style: solid; + transform: none; + user-select: none; + animation-name: none; + animation-duration: auto; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .markdown-rendered p > strong > em, + strong > em { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 600; + outline: rgb(125, 207, 255) none 0px; + text-decoration-color: rgb(125, 207, 255); + text-decoration-style: solid; + transition: all; + user-select: text; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-play-state: running; + } + + .text-highlight { + background-color: var(--text-highlight-bg); + color: var(--text-normal); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(192, 202, 245) none 0px; + text-decoration: rgb(0, 0, 0); + text-decoration-color: rgb(192, 202, 245); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + del { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(192, 202, 245) none 0px; + text-decoration: line-through; + text-decoration-color: rgb(192, 202, 245); + text-decoration-line: line-through; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; + } + + .search > .search-container > .search-space > .search-layout .highlight { + background-color: var(--text-highlight-bg); + color: rgb(0, 0, 0); + border: 0px rgb(0, 0, 0); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + border-radius: 0px; + } + + .search > .search-container > .search-space > .search-layout > .results-container .result-card:hover, + .search > .search-container > .search-space > .search-layout > .results-container .result-card:focus, + .search > .search-container > .search-space > .search-layout > .results-container .result-card.focus:not(:has(~ .result-card:hover, ~ .result-card:focus)) { + background-color: rgba(0, 0, 0, 0); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + color: var(--nav-item-color-active); + } + + .search > .search-container > .search-space > .search-layout > .results-container .result-card:has(~ .result-card.focus:not(:has(~ .result-card:hover, ~ .result-card:focus)), ~ .result-card:focus, ~ .result-card:hover) { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + color: rgb(192, 202, 245); + } + + hr { + border-left-width: 0px; + border-right-width: 0px; + border-color: currentcolor rgb(41, 46, 66) rgb(41, 46, 66); + border-top: 2px solid rgb(41, 46, 66); + border-bottom-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 32px 0px; + margin-block-end: 32px; + margin-block-start: 32px; + margin-inline-end: 0px; + margin-inline-start: 0px; + } + + a.internal-link.tag-link, + .search > .search-container > .search-space > .search-layout > .results-container .result-card > ul > li > .match-tag { + align-items: normal; + background-color: var(--pill-background); + color: var(--pill-color); + display: flex; + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 14px; + font-weight: var(--pill-weight); + line-height: var(--line-height-tight); + text-decoration: rgb(218, 218, 218); + margin-inline-start: 0px; + border: 0px solid oklch(0.823902 0.103065 235.337 / 0.15); + border-top-left-radius: 28px; + border-top-right-radius: 28px; + border-bottom-left-radius: 28px; + border-bottom-right-radius: 28px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + a.internal-link.tag-link::before { + color: rgb(187, 154, 247); + } + + .search > .search-button { + background-color: rgb(22, 22, 30); + border: 2px solid rgb(41, 46, 66); + border-top-left-radius: 5px; + border-top-right-radius: 5px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + .search > .search-container > .search-space { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + .search > .search-container > .search-space > input { + background-color: rgb(22, 22, 30); + border: 2px solid rgb(41, 46, 66); + border-top-left-radius: 5px; + border-top-right-radius: 5px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; + box-shadow: 0 0 0 var(--input-border-width-focus) var(--background-modifier-border-focus); + } + + .search > .search-container > .search-space > * { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(192, 202, 245) none 0px; + text-decoration-color: rgb(192, 202, 245); + text-decoration-style: solid; + transition: all; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-play-state: running; + } + + .search > .search-container > .search-space > .search-layout { + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + .search > .search-container > .search-space > .search-layout > .results-container { + color: rgb(192, 202, 245); + } + + .search > .search-container > .search-space > .search-layout > .results-container .result-card { + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + border-radius: 0px; + } + + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:hover, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:focus, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card.focus:not(:has(~ .result-card:hover, ~ .result-card:focus)) { + color: var(--nav-item-color-active); + font-weight: var(--nav-item-weight); + background-color: rgba(0, 0, 0, 0); + } + + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:hover .card-title, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:hover .card-description, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:focus .card-title, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:focus .card-description, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card.focus:not(:has(~ .result-card:hover, ~ .result-card:focus)) .card-title, + .search > .search-container > .search-space > .search-layout > .results-container > .result-card.focus:not(:has(~ .result-card:hover, ~ .result-card:focus)) .card-description { + color: var(--nav-item-color-active); + } + + .search > .search-container > .search-space > .search-layout > .preview-container { + color: rgb(169, 177, 214); + background-color: rgba(0, 0, 0, 0); + font-weight: 400; + } + + .search > .search-container > .search-space > .search-layout > .results-container > .result-card:hover { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + h1 { + color: var(--h1-color); + font-family: var(--h1-font); + font-size: var(--h1-size); + font-weight: var(--font-weight); + line-height: var(--h1-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h1-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px 0px 16px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(255, 117, 127); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h2 { + color: var(--h2-color); + font-family: var(--h2-font); + font-size: var(--h2-size); + font-weight: var(--font-weight); + line-height: var(--h2-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h2-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px 0px 16px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(224, 175, 104); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h3 { + color: var(--h3-color); + font-family: var(--h3-font); + font-size: var(--h3-size); + font-weight: var(--font-weight); + line-height: var(--h3-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h3-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(158, 206, 106); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h4 { + color: var(--h4-color); + font-family: var(--h4-font); + font-size: var(--h4-size); + font-weight: var(--font-weight); + line-height: var(--h4-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h4-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(125, 207, 255); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h5 { + color: var(--h5-color); + font-family: var(--h5-font); + font-size: var(--h5-size); + font-weight: var(--font-weight); + line-height: var(--h5-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h5-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(122, 162, 247); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h6 { + color: var(--h6-color); + font-family: var(--h6-font); + font-size: var(--h6-size); + font-weight: var(--font-weight); + line-height: var(--h6-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h6-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(187, 154, 247); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + text-transform: none; + } + + h2.page-title, + h2.page-title a { + color: var(--inline-title-color); + font-family: var(--inline-title-font); + font-size: var(--inline-title-size); + font-weight: var(--inline-title-weight); + line-height: var(--inline-title-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: -0.38832px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px 0px 12.944px; + margin-block-end: var(--inline-title-margin-bottom); + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(255, 117, 127); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + h1::after { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h2::after { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h3::after { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h4::after { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h5::after { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h6::after { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h2.page-title::after, + h2.page-title a::after { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h1::before { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h2::before { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h3::before { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h4::before { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h5::before { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h6::before { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + h2.page-title::before, + h2.page-title a::before { + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + width: auto; + height: auto; + background-color: rgba(0, 0, 0, 0); + background-image: none; + content: normal; + display: block; + color: rgb(218, 218, 218); + } + + .preview-container { + color: rgb(169, 177, 214); + font-weight: 400; + background-color: rgba(0, 0, 0, 0); + } + + .highlight { + background-color: var(--text-highlight-bg); + border-radius: 0px; + } + + input:focus { + border-color: rgb(41, 46, 66); + box-shadow: 0 0 0 var(--input-border-width-focus) var(--background-modifier-border-focus); + } + + h1.article-title { + color: var(--inline-title-color); + font-size: var(--inline-title-size); + font-weight: var(--inline-title-weight); + } + + ul > li { + color: rgb(192, 202, 245); + text-align: start; + padding-top: var(--list-spacing); + padding-bottom: var(--list-spacing); + padding-left: 0px; + padding-right: 0px; + padding-block-end: 1.2px; + padding-block-start: 1.2px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin-top: 0px; + margin-bottom: 0px; + margin-right: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + } + + ul > li::marker { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(218, 218, 218); + pointer-events: auto; + transform: none; + } + + ol > li { + color: rgb(192, 202, 245); + text-align: start; + padding-top: var(--list-spacing); + padding-bottom: var(--list-spacing); + padding-left: 0px; + padding-right: 0px; + padding-block-end: 1.2px; + padding-block-start: 1.2px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin-top: 0px; + margin-bottom: 0px; + margin-right: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + } + + ol > li::marker { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(218, 218, 218); + pointer-events: auto; + transform: none; + } + + dl { + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + list-style: outside none disc; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + dt { + color: rgb(192, 202, 245); + font-weight: 400; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + font-size: 16px; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + dd { + color: rgb(192, 202, 245); + font-size: 16px; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + margin: 0px 0px 0px 40px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 40px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + ul.overflow { + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + code { + background-color: var(--code-background); + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: var(--code-normal); + font-family: var(--font-monospace); + padding: 2.1px 4.2px; + padding-block-end: 2.1px; + padding-block-start: 2.1px; + padding-inline-end: 4.2px; + padding-inline-start: 4.2px; + } + + pre > code, + pre:has(> code) { + background-color: var(--code-background); + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(192, 202, 245); + overflow-x: visible; + padding: 12px 16px; + padding-block-end: 12px; + padding-block-start: 12px; + padding-inline-end: 16px; + padding-inline-start: 16px; + white-space-collapse: preserve; + text-wrap-mode: nowrap; + } + + figure[data-rehype-pretty-code-figure] { + background-color: var(--code-background); + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + figure[data-rehype-pretty-code-figure] > [data-rehype-pretty-code-title] { + background-color: var(--code-background); + color: rgb(192, 202, 245); + font-family: monospace; + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + pre > code > [data-line] { + background-color: var(--code-background); + border-left: 0px solid rgb(41, 46, 66); + } + + pre > code > [data-line][data-highlighted-line] { + background-color: var(--code-background); + border-left-color: rgb(41, 46, 66); + } + + pre > code [data-highlighted-chars] { + background-color: var(--code-background); + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + input[type="checkbox"] { + appearance: auto; + border: 1px solid rgb(86, 95, 137); + border-top-left-radius: 12px; + border-top-right-radius: 12px; + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px 8px 0px -24px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 8px; + margin-inline-start: calc(var(--checkbox-size) * -1.5); + width: var(--checkbox-size); + transition: box-shadow 0.15s ease-in-out; + position: relative; + top: auto; + } + + ul > li.task-list-item { + list-style: outside none none; + text-align: start; + display: list-item; + } + + input[type="checkbox"]:checked:after { + content: normal; + top: auto; + inset-inline-start: auto; + position: static; + width: auto; + display: list-item; + background-color: rgba(0, 0, 0, 0); + } + + li.task-list-item[data-task="-"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task=">"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="/"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="?"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="!"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="*"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="l"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="b"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="i"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="S"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="I"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="p"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="c"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="f"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="k"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="u"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="d"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="w"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); + } + + blockquote { + background-color: var(--blockquote-background-color); + border-inline-start: 2px solid rgb(128, 208, 255); + color: var(--blockquote-color); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + font-style: var(--blockquote-font-style); + line-height: 24px; + padding-bottom: 0px; + padding-top: 0px; + padding-inline-start: var(--size-4-6); + margin-inline-start: 0px; + margin-inline-end: 0px; + text-decoration: rgb(218, 218, 218); + letter-spacing: normal; + } + + .data-footnote-backref { + color: var(--text-faint); + text-decoration: underline rgb(166, 138, 249); + } + + progress { + accent-color: auto; + background-color: rgba(0, 0, 0, 0); + height: 6px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + input[type="range"] { + accent-color: auto; + background-color: rgb(59, 59, 59); + border: 2px inset rgb(133, 133, 133); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + input[type="text"] { + background-color: rgba(0, 0, 0, 0); + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(169, 177, 214); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; + } + + details { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + summary { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + cursor: auto; + font-weight: 400; + list-style: inside none disclosure-closed; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + details[open] { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + kbd { + background-color: var(--code-background); + box-shadow: none; + color: var(--code-normal); + font-family: var(--font-monospace); + font-size: var(--code-size); + border: 0px rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 4px; + border-start-end-radius: 4px; + border-end-start-radius: 4px; + border-end-end-radius: 4px; + padding: 1.4px 3.5px; + padding-block-end: 1.4px; + padding-block-start: 1.4px; + padding-inline-end: 3.5px; + padding-inline-start: 3.5px; + } + + sub { + color: rgb(192, 202, 245); + font-size: 13.3333px; + vertical-align: sub; + } + + sup { + color: rgb(192, 202, 245); + font-size: 13.3333px; + vertical-align: super; + } + + abbr { + color: rgb(192, 202, 245); + cursor: auto; + text-decoration: underline dotted; + text-decoration-style: dotted; + } + + .katex-display > .katex { + display: block; + text-align: center; + white-space-collapse: collapse; + text-wrap-mode: wrap; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + .katex-display > .katex > .katex-html { + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + .katex > .katex-html { + font-family: MJXZERO, MJXTEX; + } + + h2.page-title { + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 13px; + font-weight: 400; + line-height: 16.9px; + background-color: rgba(0, 0, 0, 0); + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + .katex-display { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + .footnotes { + background-color: rgba(0, 0, 0, 0); + border-top-color: rgb(192, 202, 245); + border-top-width: 0px; + color: rgb(192, 202, 245); + } + + .spacer { + background-color: rgba(0, 0, 0, 0); + } + + pre:has(> code.mermaid) { + background-color: var(--code-background); + border: 0px solid rgb(41, 46, 66); + } + + ul.tags > li { + background-color: var(--pill-background); + color: var(--pill-color); + border: 0px solid oklch(0.823902 0.103065 235.337 / 0.15); + border-top-left-radius: 28px; + border-top-right-radius: 28px; + border-bottom-left-radius: 28px; + border-bottom-right-radius: 28px; + } + + li.task-list-item input[type="checkbox"] { + border-color: rgb(86, 95, 137); + border-radius: 12px; + border-width: 1px; + background-color: rgba(0, 0, 0, 0); + } + + li.task-list-item input[type="checkbox"]:checked { + background-color: var(--checkbox-color); + border-color: rgb(158, 206, 106); + } + + footer { + opacity: 1; + background-color: var(--status-bar-background); + color: var(--status-bar-text-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: var(--status-bar-font-size); + text-align: start; + padding-top: 4px; + padding-bottom: 4px; + padding-left: 4px; + padding-right: var(--size-4-2); + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 4px; + } + + .content-meta { + color: var(--text-muted); + font-size: 16px; + } + + details.toc summary::marker { + color: rgb(192, 202, 245); + } + + ::-webkit-scrollbar { + background-color: rgb(30, 30, 30); + } + + ::-webkit-scrollbar-thumb { + background-color: rgb(30, 30, 30); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + border: 0px rgb(218, 218, 218); + box-shadow: none; + } + + ::-webkit-scrollbar-thumb:hover { + background-color: rgb(30, 30, 30); + } + + ::-webkit-scrollbar-thumb:active { + background-color: rgb(30, 30, 30); + } + + ::-webkit-scrollbar-track { + background-color: rgb(30, 30, 30); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + ::-webkit-scrollbar-corner { + background-color: rgb(30, 30, 30); + } + + body { + scrollbar-width: var(--scrollbar-native-width); + scrollbar-color: auto; + } + + .callout { + --callout-color: var(--callout-default); + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + mix-blend-mode: normal; + padding: 12px 12px 12px 24px; + padding-block-end: 12px; + padding-block-start: 12px; + padding-inline-end: 12px; + padding-inline-start: 24px; + } + + .callout .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="note"] { + --callout-color: var(--callout-default); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="note"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="note"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="note"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="abstract"] { + --callout-color: var(--callout-summary); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="abstract"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="abstract"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="abstract"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="info"] { + --callout-color: var(--callout-info); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="info"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="info"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="info"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="todo"] { + --callout-color: var(--callout-todo); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="todo"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="todo"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="todo"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="tip"] { + --callout-color: var(--callout-tip); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="tip"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="tip"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="tip"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="success"] { + --callout-color: var(--callout-success); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="success"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="success"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="success"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="question"] { + --callout-color: var(--callout-question); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="question"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="question"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="question"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="warning"] { + --callout-color: var(--callout-warning); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="warning"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="warning"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="warning"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="danger"] { + --callout-color: var(--callout-error); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="danger"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="danger"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="danger"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="failure"] { + --callout-color: var(--callout-fail); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="failure"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="failure"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="failure"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="bug"] { + --callout-color: var(--callout-bug); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="bug"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="bug"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="bug"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="example"] { + --callout-color: var(--callout-example); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="example"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="example"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="example"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .callout[data-callout="quote"] { + --callout-color: var(--callout-quote); + background-color: rgba(var(--bg_highlight_dark_x), 0.5); + background-image: none; + background: rgba(36, 40, 59, 0.5) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + .callout[data-callout="quote"] .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + } + + .callout[data-callout="quote"] .callout-title > .callout-title-inner > p { + color: var(--callout-title-color); + font-weight: var(--font-weight); + } + + .callout[data-callout="quote"] > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + table { + background-color: rgba(0, 0, 0, 0); + border-collapse: separate; + color: rgb(192, 202, 245); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + table-layout: auto; + text-align: start; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + thead { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + tbody { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + th { + background-color: rgba(0, 0, 0, 0); + color: var(--table-header-color); + font-weight: var(--table-header-weight); + text-align: start; + vertical-align: var(--table-cell-vertical-alignment); + box-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: normal; + border-left: var(--table-column-first-border-width) solid rgb(41, 46, 66); + border-right: 1px solid rgb(41, 46, 66); + border-top: var(--table-header-border-width) solid rgb(41, 46, 66); + border-bottom: 1px solid rgb(41, 46, 66); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; + } + + td { + background-color: rgba(0, 0, 0, 0); + color: var(--table-text-color); + font-weight: 400; + text-align: start; + vertical-align: var(--table-cell-vertical-alignment); + box-shadow: none; + text-decoration: rgb(218, 218, 218); + border: 1px solid rgb(41, 46, 66); + border-left: var(--table-column-first-border-width) solid rgb(41, 46, 66); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; + } + + tr { + background-color: var(--table-header-background); + color: rgb(192, 202, 245); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + } + + tbody tr:nth-child(even) { + background-color: var(--table-background); + } + + tbody tr:nth-child(odd) { + background-color: var(--table-row-alt-background); + } + + .table-container { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + img { + border-radius: 0px; + box-shadow: none; + filter: none; + max-width: 100%; + object-fit: fill; + border: 0px rgb(255, 117, 127); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + } + + figure { + background-color: rgba(0, 0, 0, 0); + text-align: start; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + figcaption { + color: rgb(192, 202, 245); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 16px; + font-style: normal; + text-align: start; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + video { + border-radius: 0px; + box-shadow: none; + filter: none; + max-width: 100%; + object-fit: contain; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + } + + audio { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .transclude { + background-color: var(--embed-background); + color: rgb(192, 202, 245); + border-radius: 0px; + border-color: rgb(192, 202, 245); + border-left: 2px solid rgb(128, 208, 255); + border-right-width: 0px; + border-top-width: 0px; + border-bottom-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .transclude-inner { + background-color: var(--embed-background); + color: rgb(192, 202, 245); + border-radius: 0px; + border-left: solid; + border-width: 0px; + border-color: rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + } + + .transclude ul { + padding-left: 0px; + color: rgb(192, 202, 245); + } + + .nav-files-container .nav-file-title { + color: rgb(169, 177, 214); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + } + + .nav-files-container .nav-file-title.is-active { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + } + + .nav-files-container li:has(> .folder-outer:not(.open)) > .nav-folder-title { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--nav-item-weight); + } + + .nav-files-container li:has(> .folder-outer.open) > .nav-folder-title { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--nav-item-weight); + } + + .nav-files-container .collapse-icon { + color: var(--nav-item-color); + opacity: 1; + } + + .nav-files-container .tree-item-children { + border-left: 2px solid rgb(41, 46, 66); + border-inline-start: 2px solid rgb(41, 46, 66); + } + + .explorer .folder-container > div { + color: rgb(169, 177, 214); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + } + + .nav-files-container { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + .bases-table { + border-color: rgb(128, 128, 128); + } + + .bases-table thead th { + background-color: rgba(0, 0, 0, 0); + color: var(--table-header-color); + font-weight: var(--table-header-weight); + border-color: rgb(41, 46, 66); + } + + .bases-table tbody tr:nth-child(even) { + background-color: var(--table-row-alt-background); + } + + .bases-card { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(169, 177, 214); + border-radius: 0px; + } + + .bases-card-title { + color: var(--nav-item-color-active); + font-weight: var(--nav-item-weight); + } + + .canvas-node { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(192, 202, 245); + border-radius: 0px; + border-width: 0px; + } + + .canvas-node-content { + color: rgb(192, 202, 245); + } + + .canvas-node-file { + color: var(--text-normal); + background-color: rgba(0, 0, 0, 0); + } + + .canvas-edge-label { + color: rgb(192, 202, 245); + background-color: var(--background-primary); + } + + .canvas-controls button { + background-color: var(--background-primary); + border-color: rgb(169, 177, 214); + color: var(--text-muted); + } + + .canvas-sidebar { + background-color: var(--background-secondary); + border-color: rgb(192, 202, 245); + box-shadow: var(--input-shadow); + } + + .canvas-node-group { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(192, 202, 245); + border-width: 0px; + } + + .graph > .graph-outer { + background-color: var(--background-secondary); + color: rgb(192, 202, 245); + border: 2px solid rgba(0, 0, 0, 0); + border-top-left-radius: 8px; + border-top-right-radius: 8px; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; + } + + .graph > .graph-outer > .global-graph-icon { + background-color: rgba(0, 0, 0, 0); + color: var(--icon-color); + cursor: var(--cursor); + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + } + + .graph > .global-graph-outer > .global-graph-container { + background-color: var(--background-secondary); + border: 2px solid rgba(0, 0, 0, 0); + border-top-left-radius: 8px; + border-top-right-radius: 8px; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; + } + + footer ul li a { + color: rgb(169, 177, 214); + font-size: 12px; + font-weight: 400; + } + + .recent-notes > h3 { + color: rgb(192, 202, 245); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + } + + .recent-notes > ul.recent-ul > li { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + .recent-notes > ul.recent-ul > li .section > .desc > h3 > a { + color: var(--nav-item-color); + } + + .recent-notes > ul.recent-ul > li .section > .meta { + color: rgb(169, 177, 214); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + ul.section-ul { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + li.section-li { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + } + + li.section-li > .section > .desc > h3 > a { + color: var(--nav-item-color); + } + + li.section-li > .section .meta { + color: rgb(169, 177, 214); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + .darkmode { + background-color: rgba(0, 0, 0, 0); + color: var(--icon-color); + cursor: var(--cursor); + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + } + + .darkmode svg { + stroke: rgb(169, 177, 214); + color: rgb(169, 177, 214); + } + + .breadcrumb-container { + background-color: rgba(0, 0, 0, 0); + color: rgb(169, 177, 214); + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + } + + .breadcrumb-element p { + color: var(--text-faint); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + } + + #stacked-pages-container.binder-active { + border-color: rgb(192, 202, 245); + background-color: var(--background-secondary); + } + + .binder-tab { + background-color: var(--tab-container-background); + } + + .binder-tab.binder-tab-active { + border-color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="_"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task=","] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task=";"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task=":"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="."] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="'"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="@"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="&"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="#"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="%"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="`"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="+"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="<"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="="] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="|"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="~"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="$"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="0"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="1"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="2"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="3"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="4"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="5"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="6"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="7"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="8"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="9"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="a"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="A"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="B"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="C"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="D"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="e"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="E"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="F"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="g"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="G"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="h"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="H"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="j"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="J"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="K"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="L"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="m"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="M"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="n"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="N"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="o"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="O"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="P"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="q"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="Q"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="r"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="R"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="s"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="t"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="T"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="U"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="v"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="V"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="W"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="x"] { + color: rgb(169, 177, 214); + } + + li.task-list-item[data-task="X"] { + color: rgb(169, 177, 214); + } + + li.task-list-item[data-task="y"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="Y"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="z"] { + color: rgb(192, 202, 245); + } + + li.task-list-item[data-task="Z"] { + color: rgb(192, 202, 245); + } + + html { + --default-font: '"JetBrains Mono", monospace, "Inter", sans-serif'; + --font-monospace: '"JetBrains Mono", monospace, "Source Code Pro", monospace'; + } + } +} + +html[saved-theme="dark"] { + li.task-list-item[data-task="_"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="-"] input[type="checkbox"]::after { + background-color: rgb(28, 28, 28); + color: rgb(86, 95, 137); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task=","] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task=";"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task=":"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="!"] input[type="checkbox"]::after { + background-color: rgb(28, 28, 28); + color: rgb(255, 158, 100); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M96 64c0-17.7-14.3-32-32-32S32 46.3 32 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V64zM64 480c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M96 64c0-17.7-14.3-32-32-32S32 46.3 32 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V64zM64 480c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="?"] input[type="checkbox"]::after { + background-color: rgb(255, 158, 100); + color: rgb(187, 154, 247); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM288 352c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM288 352c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="."] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="'"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task=""] input[type="checkbox"]::after { + background-color: rgb(102, 102, 102); + color: rgb(187, 154, 247); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320 288 216zm256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H320c-35.3 0-64-28.7-64-64V320 288 216z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320 288 216zm256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H320c-35.3 0-64-28.7-64-64V320 288 216z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="@"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="*"] input[type="checkbox"]::after { + background-color: rgb(224, 175, 104); + color: rgb(224, 175, 104); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="/"] input[type="checkbox"]::after { + background-color: rgb(28, 28, 28); + color: rgb(224, 175, 104); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="&"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="#"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="%"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="`"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="+"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="<"] input[type="checkbox"]::after { + background-color: rgb(125, 207, 255); + color: rgb(122, 162, 247); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="="] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task=">"] input[type="checkbox"]::after { + background-color: rgb(122, 162, 247); + color: rgb(187, 154, 247); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M307 34.8c-11.5 5.1-19 16.6-19 29.2v64H176C78.8 128 0 206.8 0 304C0 417.3 81.5 467.9 100.2 478.1c2.5 1.4 5.3 1.9 8.1 1.9c10.9 0 19.7-8.9 19.7-19.7c0-7.5-4.3-14.4-9.8-19.5C108.8 431.9 96 414.4 96 384c0-53 43-96 96-96h96v64c0 12.6 7.4 24.1 19 29.2s25 3 34.4-5.4l160-144c6.7-6.1 10.6-14.7 10.6-23.8s-3.8-17.7-10.6-23.8l-160-144c-9.4-8.5-22.9-10.6-34.4-5.4z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M307 34.8c-11.5 5.1-19 16.6-19 29.2v64H176C78.8 128 0 206.8 0 304C0 417.3 81.5 467.9 100.2 478.1c2.5 1.4 5.3 1.9 8.1 1.9c10.9 0 19.7-8.9 19.7-19.7c0-7.5-4.3-14.4-9.8-19.5C108.8 431.9 96 414.4 96 384c0-53 43-96 96-96h96v64c0 12.6 7.4 24.1 19 29.2s25 3 34.4-5.4l160-144c6.7-6.1 10.6-14.7 10.6-23.8s-3.8-17.7-10.6-23.8l-160-144c-9.4-8.5-22.9-10.6-34.4-5.4z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="|"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="~"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="$"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="0"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="1"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="2"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="3"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="4"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="5"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="6"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="7"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="8"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="9"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="a"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="A"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="b"] input[type="checkbox"]::after { + background-color: rgb(255, 117, 127); + color: rgb(122, 162, 247); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M0 48V487.7C0 501.1 10.9 512 24.3 512c5 0 9.9-1.5 14-4.4L192 400 345.7 507.6c4.1 2.9 9 4.4 14 4.4c13.4 0 24.3-10.9 24.3-24.3V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M0 48V487.7C0 501.1 10.9 512 24.3 512c5 0 9.9-1.5 14-4.4L192 400 345.7 507.6c4.1 2.9 9 4.4 14 4.4c13.4 0 24.3-10.9 24.3-24.3V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="B"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="c"] input[type="checkbox"]::after { + background-color: rgb(255, 117, 127); + color: rgb(255, 117, 127); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2H464c26.5 0 48-21.5 48-48c0-25.3-19.5-46-44.3-47.9c7.7-8.5 12.3-19.8 12.3-32.1c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48H294.5c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7V192v48 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 320H96c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64V288c0 17.7 14.3 32 32 32z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2H464c26.5 0 48-21.5 48-48c0-25.3-19.5-46-44.3-47.9c7.7-8.5 12.3-19.8 12.3-32.1c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48H294.5c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7V192v48 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 320H96c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64V288c0 17.7 14.3 32 32 32z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="C"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="d"] input[type="checkbox"]::after { + background-color: rgb(255, 117, 127); + color: rgb(255, 117, 127); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 13a1 1 0 100 2h5a1 1 0 001-1V9a1 1 0 10-2 0v2.586l-4.293-4.293a1 1 0 00-1.414 0L8 9.586 3.707 5.293a1 1 0 00-1.414 1.414l5 5a1 1 0 001.414 0L11 9.414 14.586 13H12z' clip-rule='evenodd' /%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 13a1 1 0 100 2h5a1 1 0 001-1V9a1 1 0 10-2 0v2.586l-4.293-4.293a1 1 0 00-1.414 0L8 9.586 3.707 5.293a1 1 0 00-1.414 1.414l5 5a1 1 0 001.414 0L11 9.414 14.586 13H12z' clip-rule='evenodd' /%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="D"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="e"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="E"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="f"] input[type="checkbox"]::after { + background-color: rgb(255, 117, 127); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12.395 2.553a1 1 0 00-1.45-.385c-.345.23-.614.558-.822.88-.214.33-.403.713-.57 1.116-.334.804-.614 1.768-.84 2.734a31.365 31.365 0 00-.613 3.58 2.64 2.64 0 01-.945-1.067c-.328-.68-.398-1.534-.398-2.654A1 1 0 005.05 6.05 6.981 6.981 0 003 11a7 7 0 1011.95-4.95c-.592-.591-.98-.985-1.348-1.467-.363-.476-.724-1.063-1.207-2.03zM12.12 15.12A3 3 0 017 13s.879.5 2.5.5c0-1 .5-4 1.25-4.5.5 1 .786 1.293 1.371 1.879A2.99 2.99 0 0113 13a2.99 2.99 0 01-.879 2.121z' clip-rule='evenodd' /%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12.395 2.553a1 1 0 00-1.45-.385c-.345.23-.614.558-.822.88-.214.33-.403.713-.57 1.116-.334.804-.614 1.768-.84 2.734a31.365 31.365 0 00-.613 3.58 2.64 2.64 0 01-.945-1.067c-.328-.68-.398-1.534-.398-2.654A1 1 0 005.05 6.05 6.981 6.981 0 003 11a7 7 0 1011.95-4.95c-.592-.591-.98-.985-1.348-1.467-.363-.476-.724-1.063-1.207-2.03zM12.12 15.12A3 3 0 017 13s.879.5 2.5.5c0-1 .5-4 1.25-4.5.5 1 .786 1.293 1.371 1.879A2.99 2.99 0 0113 13a2.99 2.99 0 01-.879 2.121z' clip-rule='evenodd' /%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="F"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="g"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="G"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="h"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="H"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="i"] input[type="checkbox"]::after { + background-color: rgb(122, 162, 247); + color: rgb(125, 207, 255); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-144c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-144c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="I"] input[type="checkbox"]::after { + background-color: rgb(224, 175, 104); + color: rgb(255, 158, 100); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M272 384c9.6-31.9 29.5-59.1 49.2-86.2l0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C368 78.8 289.2 0 192 0S16 78.8 16 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4l0 0c19.8 27.1 39.7 54.4 49.2 86.2H272zM192 512c44.2 0 80-35.8 80-80V416H112v16c0 44.2 35.8 80 80 80zM112 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M272 384c9.6-31.9 29.5-59.1 49.2-86.2l0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C368 78.8 289.2 0 192 0S16 78.8 16 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4l0 0c19.8 27.1 39.7 54.4 49.2 86.2H272zM192 512c44.2 0 80-35.8 80-80V416H112v16c0 44.2 35.8 80 80 80zM112 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="j"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="J"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="k"] input[type="checkbox"]::after { + background-color: rgb(224, 175, 104); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M18 8a6 6 0 01-7.743 5.743L10 14l-1 1-1 1H6v2H2v-4l4.257-4.257A6 6 0 1118 8zm-6-4a1 1 0 100 2 2 2 0 012 2 1 1 0 102 0 4 4 0 00-4-4z' clip-rule='evenodd' /%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M18 8a6 6 0 01-7.743 5.743L10 14l-1 1-1 1H6v2H2v-4l4.257-4.257A6 6 0 1118 8zm-6-4a1 1 0 100 2 2 2 0 012 2 1 1 0 102 0 4 4 0 00-4-4z' clip-rule='evenodd' /%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="K"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="l"] input[type="checkbox"]::after { + background-color: rgb(187, 154, 247); + color: rgb(255, 117, 127); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="L"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="m"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="M"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="n"] input[type="checkbox"]::after { + background-color: rgb(255, 117, 127); + color: rgb(125, 207, 255); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M32 32C32 14.3 46.3 0 64 0H320c17.7 0 32 14.3 32 32s-14.3 32-32 32H290.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8s-15.7 13.3-26 13.3H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64C46.3 64 32 49.7 32 32zM160 384h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M32 32C32 14.3 46.3 0 64 0H320c17.7 0 32 14.3 32 32s-14.3 32-32 32H290.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8s-15.7 13.3-26 13.3H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64C46.3 64 32 49.7 32 32zM160 384h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="N"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="o"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="O"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="p"] input[type="checkbox"]::after { + background-color: rgb(158, 206, 106); + color: rgb(158, 206, 106); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2H464c26.5 0 48 21.5 48 48c0 25.3-19.5 46-44.3 47.9c7.7 8.5 12.3 19.8 12.3 32.1c0 23.4-16.8 42.9-38.9 47.1c4.4 7.2 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48H294.5c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3V320 272 247.1c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192H96c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2H464c26.5 0 48 21.5 48 48c0 25.3-19.5 46-44.3 47.9c7.7 8.5 12.3 19.8 12.3 32.1c0 23.4-16.8 42.9-38.9 47.1c4.4 7.2 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48H294.5c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3V320 272 247.1c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192H96c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="P"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="q"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="Q"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="r"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="R"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="s"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="S"] input[type="checkbox"]::after { + background-color: rgb(158, 206, 106); + color: rgb(158, 206, 106); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M320 96H192L144.6 24.9C137.5 14.2 145.1 0 157.9 0H354.1c12.8 0 20.4 14.2 13.3 24.9L320 96zM192 128H320c3.8 2.5 8.1 5.3 13 8.4C389.7 172.7 512 250.9 512 416c0 53-43 96-96 96H96c-53 0-96-43-96-96C0 250.9 122.3 172.7 179 136.4l0 0 0 0c4.8-3.1 9.2-5.9 13-8.4zm84.1 96c0-11.1-9-20.1-20.1-20.1s-20.1 9-20.1 20.1v6c-5.6 1.2-10.9 2.9-15.9 5.1c-15 6.8-27.9 19.4-31.1 37.7c-1.8 10.2-.8 20 3.4 29c4.2 8.8 10.7 15 17.3 19.5c11.6 7.9 26.9 12.5 38.6 16l2.2 .7c13.9 4.2 23.4 7.4 29.3 11.7c2.5 1.8 3.4 3.2 3.8 4.1c.3 .8 .9 2.6 .2 6.7c-.6 3.5-2.5 6.4-8 8.8c-6.1 2.6-16 3.9-28.8 1.9c-6-1-16.7-4.6-26.2-7.9l0 0 0 0 0 0 0 0c-2.2-.8-4.3-1.5-6.3-2.1c-10.5-3.5-21.8 2.2-25.3 12.7s2.2 21.8 12.7 25.3c1.2 .4 2.7 .9 4.4 1.5c7.9 2.7 20.3 6.9 29.8 9.1V416c0 11.1 9 20.1 20.1 20.1s20.1-9 20.1-20.1v-5.5c5.4-1 10.5-2.5 15.4-4.6c15.7-6.7 28.4-19.7 31.6-38.7c1.8-10.4 1-20.3-3-29.4c-3.9-9-10.2-15.6-16.9-20.5c-12.2-8.8-28.3-13.7-40.4-17.4l-.8-.2c-14.2-4.3-23.8-7.3-29.9-11.4c-2.6-1.8-3.4-3-3.6-3.5c-.2-.3-.7-1.6-.1-5c.3-1.9 1.9-5.2 8.2-8.1c6.4-2.9 16.4-4.5 28.6-2.6c4.3 .7 17.9 3.3 21.7 4.3c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-4.4-1.2-14.4-3.2-21-4.4V224z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M320 96H192L144.6 24.9C137.5 14.2 145.1 0 157.9 0H354.1c12.8 0 20.4 14.2 13.3 24.9L320 96zM192 128H320c3.8 2.5 8.1 5.3 13 8.4C389.7 172.7 512 250.9 512 416c0 53-43 96-96 96H96c-53 0-96-43-96-96C0 250.9 122.3 172.7 179 136.4l0 0 0 0c4.8-3.1 9.2-5.9 13-8.4zm84.1 96c0-11.1-9-20.1-20.1-20.1s-20.1 9-20.1 20.1v6c-5.6 1.2-10.9 2.9-15.9 5.1c-15 6.8-27.9 19.4-31.1 37.7c-1.8 10.2-.8 20 3.4 29c4.2 8.8 10.7 15 17.3 19.5c11.6 7.9 26.9 12.5 38.6 16l2.2 .7c13.9 4.2 23.4 7.4 29.3 11.7c2.5 1.8 3.4 3.2 3.8 4.1c.3 .8 .9 2.6 .2 6.7c-.6 3.5-2.5 6.4-8 8.8c-6.1 2.6-16 3.9-28.8 1.9c-6-1-16.7-4.6-26.2-7.9l0 0 0 0 0 0 0 0c-2.2-.8-4.3-1.5-6.3-2.1c-10.5-3.5-21.8 2.2-25.3 12.7s2.2 21.8 12.7 25.3c1.2 .4 2.7 .9 4.4 1.5c7.9 2.7 20.3 6.9 29.8 9.1V416c0 11.1 9 20.1 20.1 20.1s20.1-9 20.1-20.1v-5.5c5.4-1 10.5-2.5 15.4-4.6c15.7-6.7 28.4-19.7 31.6-38.7c1.8-10.4 1-20.3-3-29.4c-3.9-9-10.2-15.6-16.9-20.5c-12.2-8.8-28.3-13.7-40.4-17.4l-.8-.2c-14.2-4.3-23.8-7.3-29.9-11.4c-2.6-1.8-3.4-3-3.6-3.5c-.2-.3-.7-1.6-.1-5c.3-1.9 1.9-5.2 8.2-8.1c6.4-2.9 16.4-4.5 28.6-2.6c4.3 .7 17.9 3.3 21.7 4.3c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-4.4-1.2-14.4-3.2-21-4.4V224z'/%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="t"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="T"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="u"] input[type="checkbox"]::after { + background-color: rgb(158, 206, 106); + color: rgb(158, 206, 106); + mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 7a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0V8.414l-4.293 4.293a1 1 0 01-1.414 0L8 10.414l-4.293 4.293a1 1 0 01-1.414-1.414l5-5a1 1 0 011.414 0L11 10.586 14.586 7H12z' clip-rule='evenodd' /%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 7a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0V8.414l-4.293 4.293a1 1 0 01-1.414 0L8 10.414l-4.293 4.293a1 1 0 01-1.414-1.414l5-5a1 1 0 011.414 0L11 10.586 14.586 7H12z' clip-rule='evenodd' /%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="U"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="v"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="V"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="w"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="W"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="x"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="X"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="y"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="Y"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="z"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="Z"] input[type="checkbox"]::after { + background-color: rgb(26, 27, 38); + color: rgb(255, 255, 255); + mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=\'12px\' height=\'10px\' viewBox=\'0 0 12 8\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%2528-4.000000, -6.000000%2529\' fill=\'%2523000000\'%3E%3Cpath d=\'M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + } + + li.task-list-item[data-task="-"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM3.5,7c-.55,0-1,.45-1,1s.45,1,1,1H12.5c.55,0,1-.45,1-1s-.45-1-1-1H3.5Z'/%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM3.5,7c-.55,0-1,.45-1,1s.45,1,1,1H12.5c.55,0,1-.45,1-1s-.45-1-1-1H3.5Z'/%3E%3C/g%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="!"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM6.07,3.55c-.08,.29-.09,.6-.03,.9l.86,4.56c.05,.28,.2,.52,.42,.7,.22,.18,.49,.28,.77,.28s.55-.1,.77-.28c.22-.18,.36-.43,.42-.7l.86-4.56c.06-.3,.04-.61-.03-.9-.08-.29-.22-.57-.41-.8-.19-.23-.44-.42-.71-.55-.28-.13-.58-.2-.88-.2s-.61,.07-.88,.2c-.28,.13-.52,.32-.71,.55-.19,.23-.34,.51-.41,.8Zm3.07,10.01c.28-.28,.44-.66,.44-1.06s-.16-.78-.44-1.06c-.28-.28-.66-.44-1.06-.44s-.78,.16-1.06,.44c-.28,.28-.44,.66-.44,1.06s.16,.78,.44,1.06c.28,.28,.66,.44,1.06,.44s.78-.16,1.06-.44Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM6.07,3.55c-.08,.29-.09,.6-.03,.9l.86,4.56c.05,.28,.2,.52,.42,.7,.22,.18,.49,.28,.77,.28s.55-.1,.77-.28c.22-.18,.36-.43,.42-.7l.86-4.56c.06-.3,.04-.61-.03-.9-.08-.29-.22-.57-.41-.8-.19-.23-.44-.42-.71-.55-.28-.13-.58-.2-.88-.2s-.61,.07-.88,.2c-.28,.13-.52,.32-.71,.55-.19,.23-.34,.51-.41,.8Zm3.07,10.01c.28-.28,.44-.66,.44-1.06s-.16-.78-.44-1.06c-.28-.28-.66-.44-1.06-.44s-.78,.16-1.06,.44c-.28,.28-.44,.66-.44,1.06s.16,.78,.44,1.06c.28,.28,.66,.44,1.06,.44s.78-.16,1.06-.44Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="*"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M8.91,.58c-.08-.17-.21-.32-.37-.42C8.38,.05,8.19,0,8,0s-.38,.05-.54,.16c-.16,.1-.29,.25-.37,.42l-1.93,4.12L.85,5.36c-.18,.03-.35,.1-.49,.22-.14,.12-.25,.27-.3,.45-.06,.17-.07,.36-.03,.54,.04,.18,.13,.34,.26,.48l3.15,3.23-.75,4.57c-.03,.19,0,.38,.06,.55,.07,.17,.19,.32,.35,.43,.15,.11,.33,.17,.52,.18,.19,0,.37-.03,.54-.12l3.84-2.13,3.84,2.13c.16,.09,.35,.13,.54,.12,.19-.01,.37-.07,.52-.18,.15-.11,.27-.26,.35-.43,.07-.17,.09-.36,.06-.55l-.75-4.57,3.15-3.23c.13-.13,.22-.3,.26-.48,.04-.18,.03-.37-.03-.54-.06-.17-.16-.33-.31-.45-.14-.12-.31-.2-.49-.22l-4.31-.66L8.91,.58Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M8.91,.58c-.08-.17-.21-.32-.37-.42C8.38,.05,8.19,0,8,0s-.38,.05-.54,.16c-.16,.1-.29,.25-.37,.42l-1.93,4.12L.85,5.36c-.18,.03-.35,.1-.49,.22-.14,.12-.25,.27-.3,.45-.06,.17-.07,.36-.03,.54,.04,.18,.13,.34,.26,.48l3.15,3.23-.75,4.57c-.03,.19,0,.38,.06,.55,.07,.17,.19,.32,.35,.43,.15,.11,.33,.17,.52,.18,.19,0,.37-.03,.54-.12l3.84-2.13,3.84,2.13c.16,.09,.35,.13,.54,.12,.19-.01,.37-.07,.52-.18,.15-.11,.27-.26,.35-.43,.07-.17,.09-.36,.06-.55l-.75-4.57,3.15-3.23c.13-.13,.22-.3,.26-.48,.04-.18,.03-.37-.03-.54-.06-.17-.16-.33-.31-.45-.14-.12-.31-.2-.49-.22l-4.31-.66L8.91,.58Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="<"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.75,15.5H13.25c.83,0,1.5-.67,1.5-1.5V3.5c0-.83-.67-1.5-1.5-1.5h-1.5V.5h-1.5v1.5H5.75V.5h-1.5v1.5h-1.5c-.83,0-1.5,.67-1.5,1.5V14c0,.83,.67,1.5,1.5,1.5Zm0-11.25H13.25v1.5H2.75v-1.5Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.75,15.5H13.25c.83,0,1.5-.67,1.5-1.5V3.5c0-.83-.67-1.5-1.5-1.5h-1.5V.5h-1.5v1.5H5.75V.5h-1.5v1.5h-1.5c-.83,0-1.5,.67-1.5,1.5V14c0,.83,.67,1.5,1.5,1.5Zm0-11.25H13.25v1.5H2.75v-1.5Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task=">"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M1.72,1.05c-.08-.04-.18-.06-.27-.05-.09,0-.18,.04-.26,.1-.07,.06-.13,.13-.16,.22-.03,.09-.04,.18-.02,.27l1.4,4.85c.03,.09,.08,.17,.15,.23,.07,.06,.16,.1,.25,.12l5.69,.95c.27,.05,.27,.44,0,.49l-5.69,.95c-.09,.02-.18,.06-.25,.12s-.12,.14-.15,.23l-1.4,4.85c-.02,.09-.01,.19,.02,.27,.03,.09,.09,.16,.16,.22,.07,.06,.16,.09,.26,.1,.09,0,.19,0,.27-.05l13-6.5c.08-.04,.15-.11,.2-.18,.05-.08,.07-.17,.07-.26s-.03-.18-.07-.26c-.05-.08-.12-.14-.2-.18L1.72,1.05Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M1.72,1.05c-.08-.04-.18-.06-.27-.05-.09,0-.18,.04-.26,.1-.07,.06-.13,.13-.16,.22-.03,.09-.04,.18-.02,.27l1.4,4.85c.03,.09,.08,.17,.15,.23,.07,.06,.16,.1,.25,.12l5.69,.95c.27,.05,.27,.44,0,.49l-5.69,.95c-.09,.02-.18,.06-.25,.12s-.12,.14-.15,.23l-1.4,4.85c-.02,.09-.01,.19,.02,.27,.03,.09,.09,.16,.16,.22,.07,.06,.16,.09,.26,.1,.09,0,.19,0,.27-.05l13-6.5c.08-.04,.15-.11,.2-.18,.05-.08,.07-.17,.07-.26s-.03-.18-.07-.26c-.05-.08-.12-.14-.2-.18L1.72,1.05Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="b"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M4.25,.5c-.6,0-1.17,.24-1.59,.66-.42,.42-.66,.99-.66,1.59V14.1c0,.2,.05,.39,.15,.56,.1,.17,.24,.31,.41,.41,.17,.1,.36,.15,.56,.15,.2,0,.39-.05,.56-.15l3.94-2.25c.11-.06,.24-.1,.37-.1s.26,.03,.37,.1l3.95,2.25c.17,.1,.36,.15,.56,.15,.2,0,.39-.05,.56-.15,.17-.1,.31-.24,.41-.41s.15-.36,.15-.56V2.75c0-.6-.24-1.17-.66-1.59-.42-.42-.99-.66-1.59-.66H4.25Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M4.25,.5c-.6,0-1.17,.24-1.59,.66-.42,.42-.66,.99-.66,1.59V14.1c0,.2,.05,.39,.15,.56,.1,.17,.24,.31,.41,.41,.17,.1,.36,.15,.56,.15,.2,0,.39-.05,.56-.15l3.94-2.25c.11-.06,.24-.1,.37-.1s.26,.03,.37,.1l3.95,2.25c.17,.1,.36,.15,.56,.15,.2,0,.39-.05,.56-.15,.17-.1,.31-.24,.41-.41s.15-.36,.15-.56V2.75c0-.6-.24-1.17-.66-1.59-.42-.42-.99-.66-1.59-.66H4.25Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="c"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M0,0H16V16H0V0Z'/%3E%3Cg%3E%3Cpath d='M3.33,1h-.72c-.33,0-.66,.13-.9,.35-.25,.23-.4,.54-.43,.87l-.56,6.67c-.02,.18,0,.37,.07,.54,.06,.18,.16,.34,.28,.47,.13,.14,.28,.25,.45,.32,.17,.07,.35,.11,.54,.11h1.27c.36,0,.69-.14,.94-.39,.25-.25,.39-.59,.39-.94V2.33c0-.35-.14-.7-.39-.94-.25-.25-.59-.39-.94-.39Z'/%3E%3Cpath d='M15.4,8.31l-1.79-6.34c-.08-.28-.25-.53-.48-.7-.23-.17-.52-.27-.81-.27H6.67c-.36,0-.69,.14-.94,.39-.25,.25-.39,.59-.39,.94v6.54c0,.53,.32,1.02,.81,1.25,.79,.37,1.38,.82,1.62,1.22,.36,.6,.53,1.78,.57,2.65,0,.06,0,.12,.01,.18,.06,.41,.34,.72,.73,.8,.07,.01,.14,.02,.21,.02,.8,0,1.73-.83,2.12-1.48,.29-.48,.41-1.09,.36-1.84-.03-.55-.18-1.05-.33-1.55l-.04-.12h2.72c.21,0,.41-.05,.6-.14,.18-.09,.34-.23,.47-.39,.12-.17,.21-.35,.24-.55,.04-.2,.03-.41-.03-.61Zm-6.4,5.75h0Z'/%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M0,0H16V16H0V0Z'/%3E%3Cg%3E%3Cpath d='M3.33,1h-.72c-.33,0-.66,.13-.9,.35-.25,.23-.4,.54-.43,.87l-.56,6.67c-.02,.18,0,.37,.07,.54,.06,.18,.16,.34,.28,.47,.13,.14,.28,.25,.45,.32,.17,.07,.35,.11,.54,.11h1.27c.36,0,.69-.14,.94-.39,.25-.25,.39-.59,.39-.94V2.33c0-.35-.14-.7-.39-.94-.25-.25-.59-.39-.94-.39Z'/%3E%3Cpath d='M15.4,8.31l-1.79-6.34c-.08-.28-.25-.53-.48-.7-.23-.17-.52-.27-.81-.27H6.67c-.36,0-.69,.14-.94,.39-.25,.25-.39,.59-.39,.94v6.54c0,.53,.32,1.02,.81,1.25,.79,.37,1.38,.82,1.62,1.22,.36,.6,.53,1.78,.57,2.65,0,.06,0,.12,.01,.18,.06,.41,.34,.72,.73,.8,.07,.01,.14,.02,.21,.02,.8,0,1.73-.83,2.12-1.48,.29-.48,.41-1.09,.36-1.84-.03-.55-.18-1.05-.33-1.55l-.04-.12h2.72c.21,0,.41-.05,.6-.14,.18-.09,.34-.23,.47-.39,.12-.17,.21-.35,.24-.55,.04-.2,.03-.41-.03-.61Zm-6.4,5.75h0Z'/%3E%3C/g%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="d"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M10,11c-.27,0-.52,.11-.71,.29-.19,.19-.29,.44-.29,.71s.11,.52,.29,.71c.19,.19,.44,.29,.71,.29h5c.27,0,.52-.11,.71-.29,.19-.19,.29-.44,.29-.71V7c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v2.59l-4.29-4.29c-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29l-2.29,2.29L1.71,3.29c-.19-.18-.44-.28-.7-.28-.26,0-.51,.11-.7,.29S.01,3.74,.01,4c0,.26,.1,.51,.28,.7l5,5c.19,.19,.44,.29,.71,.29s.52-.11,.71-.29l2.29-2.29,3.59,3.59h-2.59Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M10,11c-.27,0-.52,.11-.71,.29-.19,.19-.29,.44-.29,.71s.11,.52,.29,.71c.19,.19,.44,.29,.71,.29h5c.27,0,.52-.11,.71-.29,.19-.19,.29-.44,.29-.71V7c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v2.59l-4.29-4.29c-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29l-2.29,2.29L1.71,3.29c-.19-.18-.44-.28-.7-.28-.26,0-.51,.11-.7,.29S.01,3.74,.01,4c0,.26,.1,.51,.28,.7l5,5c.19,.19,.44,.29,.71,.29s.52-.11,.71-.29l2.29-2.29,3.59,3.59h-2.59Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="I"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M9,1c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v1c0,.27,.11,.52,.29,.71,.19,.19,.44,.29,.71,.29s.52-.11,.71-.29c.19-.19,.29-.44,.29-.71V1Zm4.66,2.76c.18-.19,.28-.44,.28-.7,0-.26-.11-.51-.29-.7s-.44-.29-.7-.29c-.26,0-.51,.1-.7,.28l-.71,.71c-.18,.19-.28,.44-.28,.7,0,.26,.11,.51,.29,.7s.44,.29,.7,.29c.26,0,.51-.1,.7-.28l.71-.71Zm2.34,4.24c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29h-1c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h1c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71ZM3.05,4.46c.09,.1,.2,.17,.32,.22,.12,.05,.25,.08,.39,.08,.13,0,.26-.02,.39-.07,.12-.05,.23-.12,.33-.22,.09-.09,.17-.21,.22-.33,.05-.12,.08-.25,.07-.39,0-.13-.03-.26-.08-.39-.05-.12-.13-.23-.22-.32l-.71-.71c-.19-.18-.44-.28-.7-.28-.26,0-.51,.11-.7,.29s-.29,.44-.29,.7c0,.26,.1,.51,.28,.7l.71,.71Zm-.05,3.54c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29H1c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h1c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71Zm3,6v-1h4v1c0,.53-.21,1.04-.59,1.41-.38,.38-.88,.59-1.41,.59s-1.04-.21-1.41-.59c-.38-.38-.59-.88-.59-1.41Zm4-2c.02-.34,.21-.65,.48-.86,.65-.51,1.13-1.22,1.36-2.02,.23-.8,.21-1.65-.06-2.43-.27-.79-.78-1.47-1.46-1.95-.68-.48-1.49-.74-2.32-.74s-1.64,.26-2.32,.74c-.68,.48-1.19,1.16-1.46,1.95-.27,.79-.29,1.64-.06,2.43,.23,.8,.71,1.5,1.36,2.02,.27,.21,.46,.52,.48,.86h4Z'/%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M9,1c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v1c0,.27,.11,.52,.29,.71,.19,.19,.44,.29,.71,.29s.52-.11,.71-.29c.19-.19,.29-.44,.29-.71V1Zm4.66,2.76c.18-.19,.28-.44,.28-.7,0-.26-.11-.51-.29-.7s-.44-.29-.7-.29c-.26,0-.51,.1-.7,.28l-.71,.71c-.18,.19-.28,.44-.28,.7,0,.26,.11,.51,.29,.7s.44,.29,.7,.29c.26,0,.51-.1,.7-.28l.71-.71Zm2.34,4.24c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29h-1c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h1c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71ZM3.05,4.46c.09,.1,.2,.17,.32,.22,.12,.05,.25,.08,.39,.08,.13,0,.26-.02,.39-.07,.12-.05,.23-.12,.33-.22,.09-.09,.17-.21,.22-.33,.05-.12,.08-.25,.07-.39,0-.13-.03-.26-.08-.39-.05-.12-.13-.23-.22-.32l-.71-.71c-.19-.18-.44-.28-.7-.28-.26,0-.51,.11-.7,.29s-.29,.44-.29,.7c0,.26,.1,.51,.28,.7l.71,.71Zm-.05,3.54c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29H1c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h1c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71Zm3,6v-1h4v1c0,.53-.21,1.04-.59,1.41-.38,.38-.88,.59-1.41,.59s-1.04-.21-1.41-.59c-.38-.38-.59-.88-.59-1.41Zm4-2c.02-.34,.21-.65,.48-.86,.65-.51,1.13-1.22,1.36-2.02,.23-.8,.21-1.65-.06-2.43-.27-.79-.78-1.47-1.46-1.95-.68-.48-1.49-.74-2.32-.74s-1.64,.26-2.32,.74c-.68,.48-1.19,1.16-1.46,1.95-.27,.79-.29,1.64-.06,2.43,.23,.8,.71,1.5,1.36,2.02,.27,.21,.46,.52,.48,.86h4Z'/%3E%3C/g%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="l"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M8,.12c-1.64,0-3.21,.65-4.37,1.81-1.16,1.16-1.81,2.73-1.81,4.37,0,1.34,.44,2.64,1.25,3.71,0,0,.17,.22,.2,.25l4.74,5.6,4.75-5.6s.19-.25,.19-.25h0c.81-1.07,1.25-2.37,1.25-3.71,0-1.64-.65-3.21-1.81-4.37C11.21,.78,9.64,.13,8,.12Zm0,8.44c-.45,0-.88-.13-1.25-.38-.37-.25-.66-.6-.83-1.01-.17-.41-.21-.86-.13-1.3,.09-.44,.3-.84,.62-1.15,.31-.31,.72-.53,1.15-.62,.44-.09,.89-.04,1.3,.13,.41,.17,.76,.46,1.01,.83,.25,.37,.38,.81,.38,1.25,0,.6-.24,1.17-.66,1.59-.42,.42-.99,.66-1.59,.66Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M8,.12c-1.64,0-3.21,.65-4.37,1.81-1.16,1.16-1.81,2.73-1.81,4.37,0,1.34,.44,2.64,1.25,3.71,0,0,.17,.22,.2,.25l4.74,5.6,4.75-5.6s.19-.25,.19-.25h0c.81-1.07,1.25-2.37,1.25-3.71,0-1.64-.65-3.21-1.81-4.37C11.21,.78,9.64,.13,8,.12Zm0,8.44c-.45,0-.88-.13-1.25-.38-.37-.25-.66-.6-.83-1.01-.17-.41-.21-.86-.13-1.3,.09-.44,.3-.84,.62-1.15,.31-.31,.72-.53,1.15-.62,.44-.09,.89-.04,1.3,.13,.41,.17,.76,.46,1.01,.83,.25,.37,.38,.81,.38,1.25,0,.6-.24,1.17-.66,1.59-.42,.42-.99,.66-1.59,.66Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="p"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M0,16H16V0H0V16Z'/%3E%3Cg%3E%3Cpath d='M3.33,15h-.72c-.33,0-.66-.13-.9-.35-.25-.23-.4-.54-.43-.87L.73,7.11c-.02-.18,0-.37,.07-.54,.06-.18,.16-.34,.28-.47,.13-.14,.28-.25,.45-.32,.17-.07,.35-.11,.54-.11h1.27c.36,0,.69,.14,.94,.39,.25,.25,.39,.59,.39,.94v6.67c0,.35-.14,.7-.39,.94-.25,.25-.59,.39-.94,.39Z'/%3E%3Cpath d='M15.4,7.69l-1.79,6.34c-.08,.28-.25,.53-.48,.7-.23,.17-.52,.27-.81,.27H6.67c-.36,0-.69-.14-.94-.39-.25-.25-.39-.59-.39-.94V7.13c0-.53,.32-1.02,.81-1.25,.79-.37,1.38-.82,1.62-1.22,.36-.6,.53-1.78,.57-2.65,0-.06,0-.12,.01-.18,.06-.41,.34-.72,.73-.8,.07-.01,.14-.02,.21-.02,.8,0,1.73,.83,2.12,1.48,.29,.48,.41,1.09,.36,1.84-.03,.55-.18,1.05-.33,1.55l-.04,.12h2.72c.21,0,.41,.05,.6,.14,.18,.09,.34,.23,.47,.39,.12,.17,.21,.35,.24,.55,.04,.2,.03,.41-.03,.61ZM9,1.94h0Z'/%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M0,16H16V0H0V16Z'/%3E%3Cg%3E%3Cpath d='M3.33,15h-.72c-.33,0-.66-.13-.9-.35-.25-.23-.4-.54-.43-.87L.73,7.11c-.02-.18,0-.37,.07-.54,.06-.18,.16-.34,.28-.47,.13-.14,.28-.25,.45-.32,.17-.07,.35-.11,.54-.11h1.27c.36,0,.69,.14,.94,.39,.25,.25,.39,.59,.39,.94v6.67c0,.35-.14,.7-.39,.94-.25,.25-.59,.39-.94,.39Z'/%3E%3Cpath d='M15.4,7.69l-1.79,6.34c-.08,.28-.25,.53-.48,.7-.23,.17-.52,.27-.81,.27H6.67c-.36,0-.69-.14-.94-.39-.25-.25-.39-.59-.39-.94V7.13c0-.53,.32-1.02,.81-1.25,.79-.37,1.38-.82,1.62-1.22,.36-.6,.53-1.78,.57-2.65,0-.06,0-.12,.01-.18,.06-.41,.34-.72,.73-.8,.07-.01,.14-.02,.21-.02,.8,0,1.73,.83,2.12,1.48,.29,.48,.41,1.09,.36,1.84-.03,.55-.18,1.05-.33,1.55l-.04,.12h2.72c.21,0,.41,.05,.6,.14,.18,.09,.34,.23,.47,.39,.12,.17,.21,.35,.24,.55,.04,.2,.03,.41-.03,.61ZM9,1.94h0Z'/%3E%3C/g%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="u"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M10,5c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h5c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71v5c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29s-.52-.11-.71-.29c-.19-.19-.29-.44-.29-.71v-2.59l-4.29,4.29c-.19,.19-.44,.29-.71,.29s-.52-.11-.71-.29l-2.29-2.29L1.71,12.71c-.19,.18-.44,.28-.7,.28-.26,0-.51-.11-.7-.29S.01,12.26,.01,12c0-.26,.1-.51,.28-.7L5.29,6.29c.19-.19,.44-.29,.71-.29s.52,.11,.71,.29l2.29,2.29,3.59-3.59h-2.59Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M10,5c-.27,0-.52-.11-.71-.29-.19-.19-.29-.44-.29-.71s.11-.52,.29-.71c.19-.19,.44-.29,.71-.29h5c.27,0,.52,.11,.71,.29,.19,.19,.29,.44,.29,.71v5c0,.27-.11,.52-.29,.71-.19,.19-.44,.29-.71,.29s-.52-.11-.71-.29c-.19-.19-.29-.44-.29-.71v-2.59l-4.29,4.29c-.19,.19-.44,.29-.71,.29s-.52-.11-.71-.29l-2.29-2.29L1.71,12.71c-.19,.18-.44,.28-.7,.28-.26,0-.51-.11-.7-.29S.01,12.26,.01,12c0-.26,.1-.51,.28-.7L5.29,6.29c.19-.19,.44-.29,.71-.29s.52,.11,.71,.29l2.29,2.29,3.59-3.59h-2.59Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="?"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM4.84,3.66c-.32,.48-.09,1.14,.44,1.37,.23,.1,.49,.1,.72,0,.17-.07,.31-.18,.41-.34,.31-.49,.82-.89,1.6-.89,1.72,0,2.06,1.61,1.45,2.47-.36,.51-.87,.91-1.33,1.37-.28,.28-.55,.58-.74,.93-.19,.33-.27,.69-.31,1.03-.04,.31,.08,.59,.28,.79,.18,.18,.43,.29,.71,.29,.49,0,.89-.38,.95-.87,.04-.3,.1-.45,.2-.63,.41-.76,1.18-1.12,1.98-2.3,.72-1.07,.45-2.5-.02-3.27-.55-.89-1.62-1.61-3.19-1.61-1.43,0-2.51,.7-3.15,1.66Zm3.16,11.01c.73,0,1.33-.6,1.33-1.33s-.6-1.33-1.33-1.33-1.33,.6-1.33,1.33,.6,1.33,1.33,1.33Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8s3.58,8,8,8ZM4.84,3.66c-.32,.48-.09,1.14,.44,1.37,.23,.1,.49,.1,.72,0,.17-.07,.31-.18,.41-.34,.31-.49,.82-.89,1.6-.89,1.72,0,2.06,1.61,1.45,2.47-.36,.51-.87,.91-1.33,1.37-.28,.28-.55,.58-.74,.93-.19,.33-.27,.69-.31,1.03-.04,.31,.08,.59,.28,.79,.18,.18,.43,.29,.71,.29,.49,0,.89-.38,.95-.87,.04-.3,.1-.45,.2-.63,.41-.76,1.18-1.12,1.98-2.3,.72-1.07,.45-2.5-.02-3.27-.55-.89-1.62-1.61-3.19-1.61-1.43,0-2.51,.7-3.15,1.66Zm3.16,11.01c.73,0,1.33-.6,1.33-1.33s-.6-1.33-1.33-1.33-1.33,.6-1.33,1.33,.6,1.33,1.33,1.33Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="i"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M10.67,13v-1.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-1V5.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-3.33c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h1v3.33h-1c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h4.67c.1,0,.18-.03,.24-.09s.09-.14,.09-.24Zm-1.33-9.33v-1.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-2c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h2c.1,0,.18-.03,.24-.09s.09-.14,.09-.24Zm6.67,4.33c0,1.45-.36,2.79-1.07,4.02-.72,1.23-1.69,2.2-2.91,2.91-1.23,.72-2.56,1.07-4.02,1.07s-2.79-.36-4.02-1.07c-1.23-.72-2.2-1.69-2.91-2.91-.72-1.23-1.07-2.56-1.07-4.02S.36,5.21,1.07,3.98c.72-1.23,1.69-2.2,2.91-2.91,1.23-.72,2.56-1.07,4.02-1.07s2.79,.36,4.02,1.07c1.23,.72,2.2,1.69,2.91,2.91,.72,1.23,1.07,2.56,1.07,4.02Z'/%3E%3C/g%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cg%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M10.67,13v-1.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-1V5.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-3.33c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h1v3.33h-1c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h4.67c.1,0,.18-.03,.24-.09s.09-.14,.09-.24Zm-1.33-9.33v-1.67c0-.1-.03-.18-.09-.24s-.14-.09-.24-.09h-2c-.1,0-.18,.03-.24,.09s-.09,.14-.09,.24v1.67c0,.1,.03,.18,.09,.24s.14,.09,.24,.09h2c.1,0,.18-.03,.24-.09s.09-.14,.09-.24Zm6.67,4.33c0,1.45-.36,2.79-1.07,4.02-.72,1.23-1.69,2.2-2.91,2.91-1.23,.72-2.56,1.07-4.02,1.07s-2.79-.36-4.02-1.07c-1.23-.72-2.2-1.69-2.91-2.91-.72-1.23-1.07-2.56-1.07-4.02S.36,5.21,1.07,3.98c.72-1.23,1.69-2.2,2.91-2.91,1.23-.72,2.56-1.07,4.02-1.07s2.79,.36,4.02,1.07c1.23,.72,2.2,1.69,2.91,2.91,.72,1.23,1.07,2.56,1.07,4.02Z'/%3E%3C/g%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="S"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M6.43,5.42c.15-.1,.35-.2,.57-.27v1.7c-.2-.06-.39-.15-.57-.27-.36-.24-.43-.47-.43-.58s.07-.34,.43-.58Zm2.57,5.43v-1.7c.22,.07,.41,.16,.57,.27,.36,.24,.43,.47,.43,.58s-.07,.34-.43,.58c-.18,.11-.37,.2-.57,.27Z'/%3E%3Cpath class='cls-2' d='M8,16c2.12,0,4.16-.84,5.66-2.34,1.5-1.5,2.34-3.54,2.34-5.66s-.84-4.16-2.34-5.66c-1.5-1.5-3.54-2.34-5.66-2.34S3.84,.84,2.34,2.34C.84,3.84,0,5.88,0,8s.84,4.16,2.34,5.66c1.5,1.5,3.54,2.34,5.66,2.34Zm1-13c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v.09c-.6,.11-1.17,.33-1.68,.66-.72,.48-1.32,1.25-1.32,2.25s.6,1.76,1.32,2.25c.48,.32,1.05,.55,1.68,.66v1.94c-.39-.13-.68-.32-.84-.5-.08-.1-.19-.19-.31-.25-.12-.06-.25-.1-.38-.11s-.27,0-.4,.05c-.13,.04-.25,.11-.35,.2-.1,.09-.18,.19-.24,.32-.06,.12-.09,.25-.1,.38,0,.13,.01,.27,.06,.39,.05,.13,.12,.24,.21,.34,.56,.65,1.41,1.08,2.35,1.25v.09c0,.27,.11,.52,.29,.71,.19,.19,.44,.29,.71,.29s.52-.11,.71-.29c.19-.19,.29-.44,.29-.71v-.09c.6-.11,1.17-.33,1.68-.66,.72-.48,1.32-1.26,1.32-2.25s-.6-1.77-1.32-2.25c-.51-.33-1.08-.56-1.68-.66v-1.94c.39,.13,.68,.32,.84,.5,.09,.1,.19,.18,.31,.25,.12,.06,.25,.1,.38,.11,.13,.01,.26,0,.39-.05,.13-.04,.24-.11,.34-.19,.1-.09,.18-.19,.24-.31,.06-.12,.09-.25,.1-.38,0-.13,0-.26-.05-.39-.04-.13-.11-.24-.2-.34-.56-.65-1.41-1.08-2.35-1.25v-.09Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M6.43,5.42c.15-.1,.35-.2,.57-.27v1.7c-.2-.06-.39-.15-.57-.27-.36-.24-.43-.47-.43-.58s.07-.34,.43-.58Zm2.57,5.43v-1.7c.22,.07,.41,.16,.57,.27,.36,.24,.43,.47,.43,.58s-.07,.34-.43,.58c-.18,.11-.37,.2-.57,.27Z'/%3E%3Cpath class='cls-2' d='M8,16c2.12,0,4.16-.84,5.66-2.34,1.5-1.5,2.34-3.54,2.34-5.66s-.84-4.16-2.34-5.66c-1.5-1.5-3.54-2.34-5.66-2.34S3.84,.84,2.34,2.34C.84,3.84,0,5.88,0,8s.84,4.16,2.34,5.66c1.5,1.5,3.54,2.34,5.66,2.34Zm1-13c0-.27-.11-.52-.29-.71-.19-.19-.44-.29-.71-.29s-.52,.11-.71,.29c-.19,.19-.29,.44-.29,.71v.09c-.6,.11-1.17,.33-1.68,.66-.72,.48-1.32,1.25-1.32,2.25s.6,1.76,1.32,2.25c.48,.32,1.05,.55,1.68,.66v1.94c-.39-.13-.68-.32-.84-.5-.08-.1-.19-.19-.31-.25-.12-.06-.25-.1-.38-.11s-.27,0-.4,.05c-.13,.04-.25,.11-.35,.2-.1,.09-.18,.19-.24,.32-.06,.12-.09,.25-.1,.38,0,.13,.01,.27,.06,.39,.05,.13,.12,.24,.21,.34,.56,.65,1.41,1.08,2.35,1.25v.09c0,.27,.11,.52,.29,.71,.19,.19,.44,.29,.71,.29s.52-.11,.71-.29c.19-.19,.29-.44,.29-.71v-.09c.6-.11,1.17-.33,1.68-.66,.72-.48,1.32-1.26,1.32-2.25s-.6-1.77-1.32-2.25c-.51-.33-1.08-.56-1.68-.66v-1.94c.39,.13,.68,.32,.84,.5,.09,.1,.19,.18,.31,.25,.12,.06,.25,.1,.38,.11,.13,.01,.26,0,.39-.05,.13-.04,.24-.11,.34-.19,.1-.09,.18-.19,.24-.31,.06-.12,.09-.25,.1-.38,0-.13,0-.26-.05-.39-.04-.13-.11-.24-.2-.34-.56-.65-1.41-1.08-2.35-1.25v-.09Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="n"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.75,14.75c-.41,0-.77-.15-1.06-.44-.29-.29-.44-.65-.44-1.06V2.75c0-.41,.15-.77,.44-1.06,.29-.29,.65-.44,1.06-.44H13.25c.41,0,.77,.15,1.06,.44,.29,.29,.44,.65,.44,1.06v7.5l-4.5,4.5H2.75Zm4.5-5.25c.21,0,.39-.07,.53-.22,.14-.14,.22-.32,.22-.53s-.07-.39-.22-.53c-.14-.14-.32-.22-.53-.22h-2.25c-.21,0-.39,.07-.53,.22-.14,.14-.22,.32-.22,.53s.07,.39,.22,.53c.14,.14,.32,.22,.53,.22h2.25Zm3.75-3c.21,0,.39-.07,.53-.22,.14-.14,.22-.32,.22-.53s-.07-.39-.22-.53c-.14-.14-.32-.22-.53-.22H5c-.21,0-.39,.07-.53,.22-.14,.14-.22,.32-.22,.53s.07,.39,.22,.53,.32,.22,.53,.22h6Zm-1.5,6.75l3.75-3.75h-3c-.21,0-.39,.07-.53,.22s-.22,.32-.22,.53v3Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.75,14.75c-.41,0-.77-.15-1.06-.44-.29-.29-.44-.65-.44-1.06V2.75c0-.41,.15-.77,.44-1.06,.29-.29,.65-.44,1.06-.44H13.25c.41,0,.77,.15,1.06,.44,.29,.29,.44,.65,.44,1.06v7.5l-4.5,4.5H2.75Zm4.5-5.25c.21,0,.39-.07,.53-.22,.14-.14,.22-.32,.22-.53s-.07-.39-.22-.53c-.14-.14-.32-.22-.53-.22h-2.25c-.21,0-.39,.07-.53,.22-.14,.14-.22,.32-.22,.53s.07,.39,.22,.53c.14,.14,.32,.22,.53,.22h2.25Zm3.75-3c.21,0,.39-.07,.53-.22,.14-.14,.22-.32,.22-.53s-.07-.39-.22-.53c-.14-.14-.32-.22-.53-.22H5c-.21,0-.39,.07-.53,.22-.14,.14-.22,.32-.22,.53s.07,.39,.22,.53,.32,.22,.53,.22h6Zm-1.5,6.75l3.75-3.75h-3c-.21,0-.39,.07-.53,.22s-.22,.32-.22,.53v3Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task=""] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.46,4.19c.94-1.01,2.35-1.53,4.21-1.53h.67v1.88l-.54,.11c-.91,.18-1.55,.54-1.89,1.07-.18,.28-.28,.61-.29,.94h2.05c.18,0,.35,.07,.47,.2,.13,.13,.2,.29,.2,.47v4.67c0,.74-.6,1.33-1.33,1.33H2c-.18,0-.35-.07-.47-.2-.13-.12-.2-.29-.2-.47V7.39c0-.07-.13-1.83,1.13-3.19ZM13.33,13.33h-4c-.18,0-.35-.07-.47-.2-.13-.12-.2-.29-.2-.47V7.39c0-.07-.13-1.83,1.13-3.19,.94-1.01,2.35-1.53,4.21-1.53h.67v1.88l-.54,.11c-.91,.18-1.55,.54-1.89,1.07-.18,.28-.28,.61-.29,.94h2.05c.18,0,.35,.07,.47,.2,.12,.13,.2,.29,.2,.47v4.67c0,.74-.6,1.33-1.33,1.33Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath d='M2.46,4.19c.94-1.01,2.35-1.53,4.21-1.53h.67v1.88l-.54,.11c-.91,.18-1.55,.54-1.89,1.07-.18,.28-.28,.61-.29,.94h2.05c.18,0,.35,.07,.47,.2,.13,.13,.2,.29,.2,.47v4.67c0,.74-.6,1.33-1.33,1.33H2c-.18,0-.35-.07-.47-.2-.13-.12-.2-.29-.2-.47V7.39c0-.07-.13-1.83,1.13-3.19ZM13.33,13.33h-4c-.18,0-.35-.07-.47-.2-.13-.12-.2-.29-.2-.47V7.39c0-.07-.13-1.83,1.13-3.19,.94-1.01,2.35-1.53,4.21-1.53h.67v1.88l-.54,.11c-.91,.18-1.55,.54-1.89,1.07-.18,.28-.28,.61-.29,.94h2.05c.18,0,.35,.07,.47,.2,.12,.13,.2,.29,.2,.47v4.67c0,.74-.6,1.33-1.33,1.33Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } + + li.task-list-item[data-task="/"] input[type="checkbox"] { + mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M13.66,13.66c-1.45,1.45-3.45,2.34-5.66,2.34C3.58,16,0,12.42,0,8S3.58,0,8,0c2.17,0,4.15,.87,5.59,2.28,.06,.06,.12,.12,.18,.18,1.37,1.43,2.22,3.36,2.23,5.5,0,.03,0,.07,0,.1-.01,2.19-.91,4.17-2.34,5.6Zm-1.41-1.41c-1.09,1.09-2.59,1.76-4.24,1.76-3.31,0-6-2.69-6-6S4.69,2,8,2v6l4.24,4.24Z'/%3E%3C/svg%3E"); + -webkit-mask-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg id='svg0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='16' height='16'/%3E%3Cpath class='cls-2' d='M13.66,13.66c-1.45,1.45-3.45,2.34-5.66,2.34C3.58,16,0,12.42,0,8S3.58,0,8,0c2.17,0,4.15,.87,5.59,2.28,.06,.06,.12,.12,.18,.18,1.37,1.43,2.22,3.36,2.23,5.5,0,.03,0,.07,0,.1-.01,2.19-.91,4.17-2.34,5.6Zm-1.41-1.41c-1.09,1.09-2.59,1.76-4.24,1.76-3.31,0-6-2.69-6-6S4.69,2,8,2v6l4.24,4.24Z'/%3E%3C/svg%3E"); + mask-size: contain; + -webkit-mask-size: contain; + mask-repeat: no-repeat; + -webkit-mask-repeat: no-repeat; + } +} + +html[saved-theme="dark"] { + .callout[data-callout="note"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z'/%3E%3Cpath d='m15 5 4 4'/%3E%3C/svg%3E"); + } + .callout[data-callout="abstract"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='8' height='4' x='8' y='2' rx='1' ry='1'/%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/%3E%3Cpath d='M12 11h4'/%3E%3Cpath d='M12 16h4'/%3E%3Cpath d='M8 11h.01'/%3E%3Cpath d='M8 16h.01'/%3E%3C/svg%3E"); + } + .callout[data-callout="info"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E"); + } + .callout[data-callout="todo"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); + } + .callout[data-callout="tip"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4'/%3E%3C/svg%3E"); + } + .callout[data-callout="success"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); + } + .callout[data-callout="question"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E"); + } + .callout[data-callout="warning"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E"); + } + .callout[data-callout="danger"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z'/%3E%3C/svg%3E"); + } + .callout[data-callout="failure"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E"); + } + .callout[data-callout="bug"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20v-9'/%3E%3Cpath d='M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z'/%3E%3Cpath d='M14.12 3.88 16 2'/%3E%3Cpath d='M21 21a4 4 0 0 0-3.81-4'/%3E%3Cpath d='M21 5a4 4 0 0 1-3.55 3.97'/%3E%3Cpath d='M22 13h-4'/%3E%3Cpath d='M3 21a4 4 0 0 1 3.81-4'/%3E%3Cpath d='M3 5a4 4 0 0 0 3.55 3.97'/%3E%3Cpath d='M6 13H2'/%3E%3Cpath d='m8 2 1.88 1.88'/%3E%3Cpath d='M9 7.13V6a3 3 0 1 1 6 0v1.13'/%3E%3C/svg%3E"); + } + .callout[data-callout="example"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h.01'/%3E%3Cpath d='M3 12h.01'/%3E%3Cpath d='M3 19h.01'/%3E%3Cpath d='M8 5h13'/%3E%3Cpath d='M8 12h13'/%3E%3Cpath d='M8 19h13'/%3E%3C/svg%3E"); + } + .callout[data-callout="quote"] { + --callout-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z'/%3E%3Cpath d='M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z'/%3E%3C/svg%3E"); + } +} + +.search { + & > .search-button { + font-size: 1rem; + svg { + color: var(--search-icon-color, var(--text-muted, var(--darkgray))); + stroke: var(--search-icon-color, var(--text-muted, var(--darkgray))); + } + } + & > .search-container { + & > .search-space { + margin: 12vh auto; + & > input { + margin-bottom: 0; + border-bottom: none; + border-top-left-radius: inherit; + border-top-right-radius: inherit; + font-size: 1.1rem; + &:has(+ :not(.display-results)) { + border-radius: inherit; + } + } + & > * { + background: transparent; + margin-bottom: 0; + box-shadow: none; + } + & > .search-layout { + &.display-results { + border-top-left-radius: 0; + border-top-right-radius: 0; + } + & .highlight { + background-color: var(--quartz-text-highlight); + } + & > .results-container { + & .result-card { + @media all and not ($mobile) { + display: flex; + &.no-match { + display: block; + } + } + &:has(~ .result-card:hover), + &:has(~ .result-card:focus), + &:has(~ .result-card.focus) { + background-color: unset; + } + & > ul > li > p { + background-color: transparent; + } + } + } + } + } + } +} + +.explorer { + @media all and ($mobile) { + &:not(.collapsed) > .explorer-content { + -webkit-backdrop-filter: blur(8px); + backdrop-filter: blur(8px); + } + } + .explorer-content { + .folder-container { + --folder-closed-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 5h-8.586L9.707 3.293A.997.997 0 0 0 9 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2zM4 19V7h16l.002 12H4z'%3E%3C/path%3E%3C/svg%3E"); + --folder-open-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2.165 19.551c.186.28.499.449.835.449h15c.4 0 .762-.238.919-.606l3-7A.998.998 0 0 0 21 11h-1V8c0-1.103-.897-2-2-2h-6.655L8.789 4H4c-1.103 0-2 .897-2 2v13h.007a1 1 0 0 0 .158.551zM18 8v3H6c-.4 0-.762.238-.919.606L4 14.129V8h14z'%3E%3C/path%3E%3C/svg%3E"); + + text-overflow: ellipsis; + position: relative; + + @media all and ($mobile) { + padding-inline-start: 0.5rem; + padding-inline-end: 0rem; + border-radius: 0.25rem; + } + & > svg { + opacity: 0.001; + position: absolute; + } + &:before { + width: 1rem; + height: 1rem; + min-width: 1rem; + min-height: 1rem; + display: flex; + align-self: baseline; + background: var(--quartz-icon-color); + content: ""; + margin-inline-end: 0.5rem; + margin-block-start: 0.2rem; + } + & > div { + width: 100%; + } + &:hover { + font-size: 1rem; + line-height: 1.5rem; + background-color: var(--nav-item-background-hover); + border-radius: 0.25rem; + } + } + li:has(> .folder-outer:not(.open)) > .folder-container:before { + background: var(--collapse-icon-color-collapsed, var(--quartz-icon-color)); + mask-image: var(--folder-closed-icon); + -webkit-mask-image: var(--folder-closed-icon); + } + li:has(> .folder-outer.open) > .folder-container:before { + background: var(--collapse-icon-color, var(--quartz-icon-color)); + mask-image: var(--folder-open-icon); + -webkit-mask-image: var(--folder-open-icon); + } + ul.explorer-ul li { + text-overflow: ellipsis; + position: relative; + + a { + display: flex; + color: inherit; + font-size: 1rem; + line-height: 1.5rem; + padding: inherit; + + &.active, + &:not(.folder-title):hover { + font-size: 1rem; + line-height: 1.5rem; + background-color: var(--nav-item-background-hover); + border-radius: 0.25rem; + } + &[data-for$="/index"] { + padding-inline-start: 0.5rem; + padding-inline-end: 0; + } + padding-inline-start: 0; + + @media all and ($mobile) { + padding-inline-start: 0.5rem; + padding-inline-end: 0.5rem; + &[data-for$="/index"] { + padding-inline-end: 0.5rem; + } + } + } + > a:before { + --file-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill=''%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z'/%3E%3C/svg%3E"); + width: 1rem; + height: 1rem; + min-width: 1rem; + min-height: 1rem; + content: ""; + display: flex; + align-self: baseline; + background: var(--quartz-icon-color); + mask-image: var(--file-icon); + -webkit-mask-image: var(--file-icon); + margin-inline-end: 0.5rem; + margin-block-start: 0.2rem; + } + } + } +} + +button.readermode { + & > svg { + display: none; + } + + --readermode-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWJvb2stb3Blbi1pY29uIGx1Y2lkZS1ib29rLW9wZW4iPjxwYXRoIGQ9Ik0xMiA3djE0Ii8+PHBhdGggZD0iTTMgMThhMSAxIDAgMCAxLTEtMVY0YTEgMSAwIDAgMSAxLTFoNWE0IDQgMCAwIDEgNCA0IDQgNCAwIDAgMSA0LTRoNWExIDEgMCAwIDEgMSAxdjEzYTEgMSAwIDAgMS0xIDFoLTZhMyAzIDAgMCAwLTMgMyAzIDMgMCAwIDAtMy0zeiIvPjwvc3ZnPg=="); + background: var(--quartz-icon-color) !important; + mask-image: var(--readermode-icon); + -webkit-mask-image: var(--readermode-icon); + width: 24px; + height: 24px; +} + +button.global-graph-icon { + & > svg { + display: none; + } + + --graph-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWdpdC1mb3JrLWljb24gbHVjaWRlLWdpdC1mb3JrIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjE4IiByPSIzIi8+PGNpcmNsZSBjeD0iNiIgY3k9IjYiIHI9IjMiLz48Y2lyY2xlIGN4PSIxOCIgY3k9IjYiIHI9IjMiLz48cGF0aCBkPSJNMTggOXYyYzAgLjYtLjQgMS0xIDFIN2MtLjYgMC0xLS40LTEtMVY5Ii8+PHBhdGggZD0iTTEyIDEydjMiLz48L3N2Zz4="); + background: var(--quartz-icon-color) !important; + mask-image: var(--graph-icon); + -webkit-mask-image: var(--graph-icon); + width: 24px; + height: 24px; +} + +button.darkmode { + & > svg { + display: none !important; + } + + --moon-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLW1vb24taWNvbiBsdWNpZGUtbW9vbiI+PHBhdGggZD0iTTEyIDNhNiA2IDAgMCAwIDkgOSA5IDkgMCAxIDEtOS05WiIvPjwvc3ZnPg=="); + + --sun-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLXN1bi1pY29uIGx1Y2lkZS1zdW4iPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjQiLz48cGF0aCBkPSJNMTIgMnYyIi8+PHBhdGggZD0iTTEyIDIwdjIiLz48cGF0aCBkPSJtNC45MyA0LjkzIDEuNDEgMS40MSIvPjxwYXRoIGQ9Im0xNy42NiAxNy42NiAxLjQxIDEuNDEiLz48cGF0aCBkPSJNMiAxMmgyIi8+PHBhdGggZD0iTTIwIDEyaDIiLz48cGF0aCBkPSJtNi4zNCAxNy42Ni0xLjQxIDEuNDEiLz48cGF0aCBkPSJtMTkuMDcgNC45My0xLjQxIDEuNDEiLz48L3N2Zz4="); + background: var(--quartz-icon-color) !important; + width: 24px; + height: 24px; +} + +.explorer svg, +button.toc-header .fold, +.global-graph-icon, +.readermode, +.darkmode { + color: var(--quartz-icon-color); + stroke: var(--quartz-icon-color); +} + +@media all and not ($desktop) { + .page > div#quartz-body div.sidebar.right { + background-color: transparent; + border-left: none; + } +} + +@media all and ($desktop) { + div#quartz-root.page { + display: grid; + place-items: center; + width: 100%; + min-width: 100%; + max-width: 100%; + padding: 0; + margin: 0; + div#quartz-body { + width: min(100%, calc(#{map.get($breakpoints, desktop)} + 300px)); + max-width: min(100%, calc(#{map.get($breakpoints, desktop)} + 300px)); + padding: 0 auto; + } + } + .page > #quartz-body { + div.center, + footer { + min-width: calc(100% - 3rem); + max-width: calc(100% - 3rem); + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + footer { + padding: 0 1.5rem; + } + } +} + +@media all and ($tablet) { + .page > #quartz-body { + padding-left: 0; + padding-right: 0; + + div.center, + footer { + min-width: calc(100% - 3rem); + max-width: calc(100% - 3rem); + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + div.sidebar.left { + padding-left: 2rem; + } + + div.sidebar.right, + footer { + padding: 0 1.5rem; + } + } +} + +@media all and ($mobile) { + .page > div#quartz-body div.sidebar.left { + background-color: transparent; + border-right: none; + } + .page > #quartz-body { + padding: 0; + + div.center, + footer { + min-width: calc(100% - 3rem); + max-width: calc(100% - 3rem); + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + div.sidebar.left, + div.sidebar.left:has(.explorer) { + padding: 1rem 1.5rem 1rem 1rem; + } + + div.sidebar.right, + footer { + padding: 0 1.5rem; + } + footer { + min-width: auto; + } + + // overflow fix for explorer on mobile + .explorer { + .explorer-content { + padding-left: 1rem; + padding-right: 1rem; + overflow-y: auto; + max-height: 100vh; + & > .explorer-ul { + min-height: 0; + overscroll-behavior: contain; + } + ul { + overscroll-behavior: auto; + } + } + } + } + .page-title { + display: none; + } +} + +.callout.is-collapsed .callout-content > :first-child { + margin-top: -4rem; +} + +figure[data-rehype-pretty-code-figure] pre, +pre { + background-color: var(--qt-code-background, var(--code-background)); + white-space: pre; + + & > code { + overflow-x: auto; + + span[data-token-type="keyword"] { + color: var(--qt-code-keyword, var(--code-keyword)) !important; + } + span[data-token-type="string"] { + color: var(--qt-code-string, var(--code-string)) !important; + } + span[data-token-type="comment"] { + color: var(--qt-code-comment, var(--code-comment)) !important; + font-style: italic; + } + span[data-token-type="function"] { + color: var(--qt-code-function, var(--code-function)) !important; + } + span[data-token-type="value"] { + color: var(--qt-code-value, var(--code-value)) !important; + } + span[data-token-type="operator"] { + color: var(--qt-code-operator, var(--code-operator)) !important; + } + span[data-token-type="property"] { + color: var(--qt-code-property, var(--code-property)) !important; + } + span[data-token-type="normal"] { + color: var(--qt-code-normal, var(--code-normal)) !important; + } + span[data-token-type="tag"] { + color: var(--qt-code-tag, var(--code-tag)) !important; + } + span[data-token-type="important"] { + color: var(--qt-code-important, var(--code-important)) !important; + font-style: italic; + } + span[data-token-type="punctuation"] { + color: var(--qt-code-punctuation, var(--code-punctuation)) !important; + } + span[data-token-type="regexp"] { + color: var(--qt-code-string, var(--code-string)) !important; + } + + span[class*="qt-code-keyword"] { + color: var(--qt-code-keyword, var(--code-keyword)) !important; + } + span[class*="qt-code-string"] { + color: var(--qt-code-string, var(--code-string)) !important; + } + span[class*="qt-code-comment"] { + color: var(--qt-code-comment, var(--code-comment)) !important; + } + span[class*="qt-code-function"] { + color: var(--qt-code-function, var(--code-function)) !important; + } + span[class*="qt-code-number"] { + color: var(--qt-code-number, var(--code-value)) !important; + } + span[class*="qt-code-operator"] { + color: var(--qt-code-operator, var(--code-operator)) !important; + } + span[class*="qt-code-property"] { + color: var(--qt-code-property, var(--code-property)) !important; + } + span[class*="qt-code-variable"] { + color: var(--qt-code-variable, var(--code-normal)) !important; + } + span[class*="qt-code-tag"] { + color: var(--qt-code-tag, var(--code-tag)) !important; + } + span[class*="qt-code-attribute"] { + color: var(--qt-code-attribute, var(--code-important)) !important; + } + span[class*="qt-code-type"] { + color: var(--qt-code-type, var(--code-function)) !important; + } + span[class*="qt-code-builtin"] { + color: var(--qt-code-builtin, var(--code-function)) !important; + } + span[class*="qt-code-atom"] { + color: var(--qt-code-atom, var(--code-value)) !important; + } + span[class*="qt-code-meta"] { + color: var(--qt-code-meta, var(--code-comment)) !important; + } + span[class*="qt-code-qualifier"] { + color: var(--qt-code-qualifier, var(--code-property)) !important; + } + span[class*="qt-code-punctuation"] { + color: var(--qt-code-punctuation, var(--code-punctuation)) !important; + } + span[class*="qt-code-bracket"] { + color: var(--qt-code-bracket, var(--code-punctuation)) !important; + } + span[class*="qt-code-header"] { + color: var(--qt-code-header, var(--code-tag)) !important; + } + span[class*="qt-code-link"] { + color: var(--qt-code-link, var(--code-string)) !important; + } + span[class*="qt-code-error"] { + color: var(--qt-code-error, var(--code-important)) !important; + } + + background-color: transparent; + color: var(--qt-code-default, var(--code-normal)); + } +} + +blockquote.callout { + .callout-title { + color: var(--color); + .callout-icon { + background-color: var(--color); + } + } + .callout-title > .callout-title-inner > p { + color: var(--color); + } + &[data-callout] { + --color: rgb(var(--callout-info, 2, 122, 255)) !important; + --border: rgba(var(--callout-info, 2, 122, 255), 0.267) !important; + --bg: rgba(var(--callout-info, 2, 122, 255), 0.063) !important; + } + &[data-callout="note"] { + --color: rgb(var(--callout-default, 2, 122, 255)) !important; + --border: rgba(var(--callout-default, 2, 122, 255), 0.267) !important; + --bg: rgba(var(--callout-default, 2, 122, 255), 0.063) !important; + } + &[data-callout="abstract"] { + --color: rgb(var(--callout-summary, 83, 223, 221)) !important; + --border: rgba(var(--callout-summary, 83, 223, 221), 0.267) !important; + --bg: rgba(var(--callout-summary, 83, 223, 221), 0.063) !important; + } + &[data-callout="info"] { + --color: rgb(var(--callout-info, 2, 122, 255)) !important; + --border: rgba(var(--callout-info, 2, 122, 255), 0.267) !important; + --bg: rgba(var(--callout-info, 2, 122, 255), 0.063) !important; + } + &[data-callout="todo"] { + --color: rgb(var(--callout-todo, 2, 122, 255)) !important; + --border: rgba(var(--callout-todo, 2, 122, 255), 0.267) !important; + --bg: rgba(var(--callout-todo, 2, 122, 255), 0.063) !important; + } + &[data-callout="tip"] { + --color: rgb(var(--callout-tip, 83, 223, 221)) !important; + --border: rgba(var(--callout-tip, 83, 223, 221), 0.267) !important; + --bg: rgba(var(--callout-tip, 83, 223, 221), 0.063) !important; + } + &[data-callout="success"] { + --color: rgb(var(--callout-success, 68, 207, 110)) !important; + --border: rgba(var(--callout-success, 68, 207, 110), 0.267) !important; + --bg: rgba(var(--callout-success, 68, 207, 110), 0.063) !important; + } + &[data-callout="question"] { + --color: rgb(var(--callout-question, 233, 151, 63)) !important; + --border: rgba(var(--callout-question, 233, 151, 63), 0.267) !important; + --bg: rgba(var(--callout-question, 233, 151, 63), 0.063) !important; + } + &[data-callout="warning"] { + --color: rgb(var(--callout-warning, 233, 151, 63)) !important; + --border: rgba(var(--callout-warning, 233, 151, 63), 0.267) !important; + --bg: rgba(var(--callout-warning, 233, 151, 63), 0.063) !important; + } + &[data-callout="failure"] { + --color: rgb(var(--callout-fail, 251, 70, 76)) !important; + --border: rgba(var(--callout-fail, 251, 70, 76), 0.267) !important; + --bg: rgba(var(--callout-fail, 251, 70, 76), 0.063) !important; + } + &[data-callout="danger"] { + --color: rgb(var(--callout-error, 251, 70, 76)) !important; + --border: rgba(var(--callout-error, 251, 70, 76), 0.267) !important; + --bg: rgba(var(--callout-error, 251, 70, 76), 0.063) !important; + } + &[data-callout="bug"] { + --color: rgb(var(--callout-bug, 251, 70, 76)) !important; + --border: rgba(var(--callout-bug, 251, 70, 76), 0.267) !important; + --bg: rgba(var(--callout-bug, 251, 70, 76), 0.063) !important; + } + &[data-callout="example"] { + --color: rgb(var(--callout-example, 168, 130, 255)) !important; + --border: rgba(var(--callout-example, 168, 130, 255), 0.267) !important; + --bg: rgba(var(--callout-example, 168, 130, 255), 0.063) !important; + } + &[data-callout="quote"] { + --color: rgb(var(--callout-quote, 158, 158, 158)) !important; + --border: rgba(var(--callout-quote, 158, 158, 158), 0.267) !important; + --bg: rgba(var(--callout-quote, 158, 158, 158), 0.063) !important; + } +} + +:root[saved-theme="light"] { + button.darkmode { + mask-image: var(--sun-icon); + -webkit-mask-image: var(--sun-icon); + } +} + +:root[saved-theme="dark"] { + button.darkmode { + mask-image: var(--moon-icon); + -webkit-mask-image: var(--moon-icon); + } +} + +:root[reader-mode="on"] { + body[data-slug] { + div#quartz-root.page { + transition: background-color 0.2s; + &:not(:has(.sidebar:hover)) { + background-color: transparent; + transition: background-color 0.2s; + .sidebar { + opacity: 0 !important; + transition: opacity 0.2s; + } + } + } + div#quartz-root.page:not(:has(.center:hover, footer:hover)):hover { + .sidebar { + opacity: 1 !important; + transition: opacity 0.2s; + } + } + } +} + +:root[saved-theme="light"], +:root[saved-theme="dark"] { + body { + a.external-link, + a.internal-link, + .breadcrumb-container .breadcrumb-element > a, + footer a { + text-decoration: none; + } + } +} diff --git a/quartz/styles/themes/publish.css b/quartz/styles/themes/publish.css new file mode 100644 index 0000000..9f4dd69 --- /dev/null +++ b/quartz/styles/themes/publish.css @@ -0,0 +1,8870 @@ +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTN1OVk6OThhvAWV8.woff2) + format("woff2"); + unicode-range: + U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} + +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTPlOVk6OThhvAWV8.woff2) + format("woff2"); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} + +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTOVOVk6OThhvAWV8.woff2) + format("woff2"); + unicode-range: + U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} + +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTNVOVk6OThhvAWV8.woff2) + format("woff2"); + unicode-range: + U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, + U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, + U+1EA0-1EF9, U+20AB; +} + +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTNFOVk6OThhvAWV8.woff2) + format("woff2"); + unicode-range: + U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, + U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, + U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +@font-face { + font-family: "JetBrains Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTOlOVk6OThhvA.woff2) + format("woff2"); + unicode-range: + U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, + U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, + U+2215, U+FEFF, U+FFFD; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmZiAr0klQmz24O0g.woff2) + format("woff2"); + unicode-range: + U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmQiAr0klQmz24O0g.woff2) + format("woff2"); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmYiAr0klQmz24O0g.woff2) + format("woff2"); + unicode-range: U+1F00-1FFF; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmXiAr0klQmz24O0g.woff2) + format("woff2"); + unicode-range: + U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVnoiAr0klQmz24O0g.woff2) + format("woff2"); + unicode-range: + U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, + U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, + U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, + U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, + U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, + U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, + U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, + U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, + U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, + U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, + U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, + U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVn6iAr0klQmz24O0g.woff2) + format("woff2"); + unicode-range: + U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, + U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, + U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, + U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, + U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, + U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, + U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, + U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, + U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, + U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, + U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, + U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, + U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, + U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, + U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, + U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, + U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, + U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, + U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, + U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, + U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, + U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, + U+1FB00-1FBFF; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmbiAr0klQmz24O0g.woff2) + format("woff2"); + unicode-range: + U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, + U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, + U+1EA0-1EF9, U+20AB; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAr0klQmz24O0g.woff2) + format("woff2"); + unicode-range: + U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, + U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, + U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAr0klQmz24.woff2) + format("woff2"); + unicode-range: + U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, + U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, + U+2215, U+FEFF, U+FFFD; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZJhiJ-Ek-_EeAmM.woff2) + format("woff2"); + unicode-range: + U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZthiJ-Ek-_EeAmM.woff2) + format("woff2"); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZNhiJ-Ek-_EeAmM.woff2) + format("woff2"); + unicode-range: U+1F00-1FFF; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZxhiJ-Ek-_EeAmM.woff2) + format("woff2"); + unicode-range: + U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZBhiJ-Ek-_EeAmM.woff2) + format("woff2"); + unicode-range: + U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, + U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, + U+1EA0-1EF9, U+20AB; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZFhiJ-Ek-_EeAmM.woff2) + format("woff2"); + unicode-range: + U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, + U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, + U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +@font-face { + font-family: "Inter"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZ9hiJ-Ek-_EeA.woff2) + format("woff2"); + unicode-range: + U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, + U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, + U+2215, U+FEFF, U+FFFD; +} + +@font-face { + font-family: "Cascadia Mono"; + font-style: normal; + font-display: swap; + font-weight: 400; + src: + url("https://cdn.jsdelivr.net/npm/@fontsource/cascadia-mono@4.2.1/files/cascadia-mono-latin-ext-400-normal.woff2") + format("woff2"), + url("https://cdn.jsdelivr.net/npm/@fontsource/cascadia-mono@4.2.1/files/cascadia-mono-latin-ext-400-normal.woff") + format("woff"); +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_SeW4AJi8SJQtQ4Y.woff2) + format("woff2"); + unicode-range: + U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_QOW4AJi8SJQtQ4Y.woff2) + format("woff2"); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_R-W4AJi8SJQtQ4Y.woff2) + format("woff2"); + unicode-range: + U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_S-W4AJi8SJQtQ4Y.woff2) + format("woff2"); + unicode-range: + U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, + U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, + U+1EA0-1EF9, U+20AB; +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_SuW4AJi8SJQtQ4Y.woff2) + format("woff2"); + unicode-range: + U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, + U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, + U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +@font-face { + font-family: "Roboto Mono"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_ROW4AJi8SJQt.woff2) + format("woff2"); + unicode-range: + U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, + U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, + U+2215, U+FEFF, U+FFFD; +} +@font-face { + font-family: "Monaco"; + font-style: normal; + font-weight: 400; + src: + local("Monaco"), + url("https://fonts.cdnfonts.com/s/14106/Monaco.woff") format("woff"); +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMRrTFcZZJmOpwVS.woff2) + format("woff2"); + unicode-range: + U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtM1rTFcZZJmOpwVS.woff2) + format("woff2"); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMVrTFcZZJmOpwVS.woff2) + format("woff2"); + unicode-range: U+1F00-1FFF; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMprTFcZZJmOpwVS.woff2) + format("woff2"); + unicode-range: + U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMZrTFcZZJmOpwVS.woff2) + format("woff2"); + unicode-range: + U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, + U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, + U+1EA0-1EF9, U+20AB; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMdrTFcZZJmOpwVS.woff2) + format("woff2"); + unicode-range: + U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, + U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, + U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +@font-face { + font-family: "Source Code Pro"; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMlrTFcZZJmOpw.woff2) + format("woff2"); + unicode-range: + U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, + U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, + U+2215, U+FEFF, U+FFFD; +} +body.theme-light { + --bases-table-header-background: var(--background-primary) !important; + --focus-ring-color: var(--csstools-light-dark-toggle--23, #0df) !important; + --tab-container-background: var(--background-secondary) !important; + --bases-embed-border-color: var(--background-modifier-border) !important; + --bases-table-border-color: var(--table-border-color) !important; + --bases-table-header-background-hover: var( + --background-modifier-hover + ) !important; + --table-border-color: var(--background-modifier-border) !important; + --text-accent: var(--magenta) !important; + --text-faint: var(--comment) !important; + --text-normal: var(--fg) !important; + --icon-size: var(--icon-m) !important; + --icon-stroke: var(--icon-m-stroke-width) !important; + --drag-item-background: var(--background-primary) !important; + --titlebar-background: var(--background-secondary) !important; + --scrollbar-native-width: auto !important; + --input-height: 30px !important; + --input-border-width: var(--border-width) !important; + --input-border-width-focus: 2px !important; + --input-radius: 5px !important; + --input-padding: var(--size-4-1) var(--size-4-2) !important; + --background-modifier-border: var(--bg_highlight) !important; + --background-modifier-form-field: var(--bg_dark) !important; + --pill-background: transparent !important; + --pill-background-hover: transparent !important; + --pill-border-color: var(--background-modifier-border) !important; + --pill-border-color-hover: var(--background-modifier-border-hover) !important; + --pill-border-width: var(--border-width) !important; + --pill-color: var(--text-muted) !important; + --pill-color-hover: var(--text-normal) !important; + --pill-color-remove: var(--text-faint) !important; + --pill-color-remove-hover: var(--text-accent) !important; + --pill-decoration: none !important; + --pill-decoration-hover: none !important; + --pill-focus-left-adjust: -4px !important; + --pill-focus-width: calc(100% + 6px) !important; + --pill-padding-x: 0.65em !important; + --pill-padding-y: 0.25em !important; + --pill-radius: 2em !important; + --font-weight: var(--font-normal) !important; + --accent-h: 202 !important; + --accent-l: 43% !important; + --accent-s: 86% !important; + --anim-duration-fast: 140ms !important; + --anim-duration-moderate: 300ms !important; + --anim-duration-none: 0 !important; + --anim-duration-slow: 560ms !important; + --anim-duration-superfast: 70ms !important; + --anim-motion-delay: cubic-bezier(0.65, 0.05, 0.36, 1) !important; + --anim-motion-jumpy: cubic-bezier(0.68, -0.55, 0.27, 1.55) !important; + --anim-motion-smooth: cubic-bezier(0.45, 0.05, 0.55, 0.95) !important; + --anim-motion-swing: cubic-bezier(0, 0.55, 0.45, 1) !important; + --background-modifier-active-hover: var(--bg_highlight) !important; + --background-modifier-border-focus: var(--bg_highlight) !important; + --background-modifier-border-hover: var(--bg_highlight) !important; + --background-modifier-box-shadow: rgba(0, 0, 0, 0.3) !important; + --background-modifier-cover: rgba(var(--bg_dark_x), 0.8) !important; + --background-modifier-error: var(--red1) !important; + --background-modifier-error-hover: var(--red) !important; + --background-modifier-error-rgb: var(--color-red-rgb) !important; + --background-modifier-form-field-hover: var( + --background-modifier-form-field + ) !important; + --background-modifier-hover: var(--bg_highlight) !important; + --background-modifier-message: rgba(var(--bg_highlight_x), 0.9) !important; + --background-modifier-success: var(--green) !important; + --background-modifier-success-rgb: var(--color-green-rgb) !important; + --background-modifier-warning: var(--color-orange) !important; + --background-modifier-warning-hover: var(--color-orange) !important; + --background-primary: var(--bg) !important; + --background-primary-alt: var(--bg) !important; + --background-secondary: var(--bg_dark) !important; + --background-secondary-alt: var(--bg_dark) !important; + --bases-cards-background: var(--background-primary) !important; + --bases-cards-border-width: var(--border-width) !important; + --bases-cards-container-background: transparent !important; + --bases-cards-corner-shape: var(--corner-shape) !important; + --bases-cards-cover-background: var(--background-primary-alt) !important; + --bases-cards-font-size: var(--font-smaller) !important; + --bases-cards-line-height: 24px !important; + --bases-cards-radius: var(--radius-m) !important; + --bases-cards-scale: 1 !important; + --bases-cards-shadow: 0 0 0 1px var(--background-modifier-border) !important; + --bases-cards-shadow-hover: 0 0 0 1px var(--background-modifier-border-hover) !important; + --bases-embed-border-radius: var(--radius-s) !important; + --bases-embed-border-width: 0px !important; + --bases-filter-input-background: var( + --background-modifier-form-field + ) !important; + --bases-filter-menu-width: 520px !important; + --bases-group-heading-property-color: var(--text-muted) !important; + --bases-group-heading-property-display: block !important; + --bases-group-heading-property-size: var(--font-ui-smaller) !important; + --bases-group-heading-property-weight: var(--font-normal) !important; + --bases-group-heading-value-size: var(--font-smaller) !important; + --bases-group-heading-value-weight: var(--font-semibold) !important; + --bases-header-border-width: 0 0 var(--border-width) 0 !important; + --bases-header-height: 40px !important; + --bases-header-padding-end: 2px !important; + --bases-header-padding-start: 2px !important; + --bases-table-cell-background-active: var(--background-primary) !important; + --bases-table-cell-background-disabled: var( + --background-primary-alt + ) !important; + --bases-table-cell-background-selected: var(--table-selection) !important; + --bases-table-cell-radius-active: 2px !important; + --bases-table-cell-radius-focus: 2px !important; + --bases-table-cell-shadow-active: 0 0 0 2px + var(--background-modifier-border-focus) !important; + --bases-table-cell-shadow-focus: 0 0 0 2px var(--interactive-accent) !important; + --bases-table-column-border-width: var(--border-width) !important; + --bases-table-column-max-width: 300 !important; + --bases-table-column-min-width: 40 !important; + --bases-table-container-border-radius: var(--radius-s) !important; + --bases-table-container-border-width: var(--border-width) !important; + --bases-table-font-size: var(--font-smaller) !important; + --bases-table-group-background: var(--background-primary-alt) !important; + --bases-table-group-gap: 10px !important; + --bases-table-header-color: var(--text-muted) !important; + --bases-table-header-icon-display: flex !important; + --bases-table-header-sort-mask: linear-gradient( + to left, + transparent var(--size-4-6), + black var(--size-4-6) + ) !important; + --bases-table-header-weight: var(--font-weight) !important; + --bases-table-row-background-hover: var( + --table-row-background-hover + ) !important; + --bases-table-row-border-width: var(--border-width) !important; + --bases-table-row-height: 30px !important; + --bases-table-summary-background: var(--background-primary) !important; + --bases-table-summary-background-hover: var( + --background-modifier-hover + ) !important; + --bases-toolbar-badge-display: none !important; + --bases-toolbar-label-display: block !important; + --blockquote-background-color: var(--bg_dark) !important; + --blockquote-border-color: var(--interactive-accent) !important; + --blockquote-border-thickness: 2px !important; + --blockquote-font-style: normal !important; + --blur-background: color-mix( + in srgb, + var(--background-primary) var(--blur-opacity-s), + transparent + ) + linear-gradient( + var(--background-primary), + color-mix( + in srgb, + var(--background-primary) var(--blur-opacity-s), + transparent + ) + ) !important; + --blur-brightness: 1.15 !important; + --blur-l: blur(var(--blur-radius-l)) saturate(var(--blur-saturation)) + brightness(var(--blur-brightness)) !important; + --blur-m: blur(var(--blur-radius-m)) saturate(var(--blur-saturation)) + brightness(var(--blur-brightness)) !important; + --blur-opacity-m: 90% !important; + --blur-opacity-s: 65% !important; + --blur-radius-l: 16px !important; + --blur-radius-m: 10px !important; + --blur-radius-s: 6px !important; + --blur-s: blur(var(--blur-radius-s)) saturate(var(--blur-saturation)) + brightness(var(--blur-brightness)) !important; + --blur-saturation: 1.5 !important; + --bold-modifier: 200 !important; + --bold-weight: calc(var(--font-weight) + var(--bold-modifier)) !important; + --border-width: 2px !important; + --button-corner-shape: var(--corner-shape) !important; + --button-radius: var(--input-radius) !important; + --callout-blend-mode: var(--highlight-mix-blend-mode); + --callout-border-opacity: 0.25; + --callout-border-width: 0px; + --callout-bug: var(--red_x); + --callout-content-background: transparent; + --callout-content-padding: 0; + --callout-default: var(--blue_x); + --callout-error: var(--red1_x); + --callout-example: var(--magenta_x); + --callout-fail: var(--red1_x); + --callout-important: var(--green_x); + --callout-info: var(--blue_x); + --callout-padding: var(--size-4-3) var(--size-4-3) var(--size-4-3) + var(--size-4-6); + --callout-question: var(--yellow_x); + --callout-quote: var(--fg_dark_x); + --callout-radius: var(--radius-s); + --callout-success: var(--teal_x); + --callout-summary: var(--cyan_x); + --callout-tip: var(--cyan_x); + --callout-title-padding: 0; + --callout-title-weight: calc(var(--font-weight) + var(--bold-modifier)); + --callout-todo: var(--cyan_x); + --callout-warning: var(--orange_x); + --canvas-background: var(--background-primary) !important; + --canvas-card-label-color: var(--text-faint) !important; + --canvas-color: var(--bg_highlight_x) !important; + --canvas-color-1: var(--color-red) !important; + --canvas-color-2: var(--color-orange) !important; + --canvas-color-3: var(--color-yellow) !important; + --canvas-color-4: var(--color-green) !important; + --canvas-color-5: var(--color-cyan) !important; + --canvas-color-6: var(--color-purple) !important; + --canvas-controls-icon-size: var(--icon-s) !important; + --canvas-controls-icon-stroke: var(--icon-s-stroke-width) !important; + --canvas-controls-radius: var(--radius-s) !important; + --canvas-dot-pattern: var(--color-base-30) !important; + --caret-color: var(--text-normal) !important; + --checkbox-border-color: var(--comment) !important; + --checkbox-border-color-hover: var(--comment) !important; + --checkbox-color: var(--green) !important; + --checkbox-color-hover: var(--green) !important; + --checkbox-margin-inline-start: 0.85em !important; + --checkbox-marker-color: var(--bg) !important; + --checkbox-radius: var(--radius-l) !important; + --checkbox-size: var(--font-text-size) !important; + --checklist-done-color: var(--text-muted) !important; + --checklist-done-decoration: line-through !important; + --clickable-icon-radius: var(--radius-s) !important; + --code-background: var(--bg_highlight_dark) !important; + --code-border-color: var(--background-modifier-border) !important; + --code-border-width: 0px !important; + --code-bracket-background: var(--background-modifier-hover) !important; + --code-comment: var(--text-faint) !important; + --code-function: var(--color-yellow) !important; + --code-important: var(--color-orange) !important; + --code-keyword: var(--color-pink) !important; + --code-normal: var(--fg) !important; + --code-operator: var(--color-red) !important; + --code-property: var(--color-cyan) !important; + --code-punctuation: var(--text-muted) !important; + --code-radius: var(--radius-s) !important; + --code-size: var(--font-smaller) !important; + --code-string: var(--color-green) !important; + --code-tag: var(--color-red) !important; + --code-value: var(--color-purple) !important; + --code-white-space: pre-wrap !important; + --collapse-icon-color: var(--text-faint) !important; + --collapse-icon-color-collapsed: var(--text-accent) !important; + --color-accent: hsl( + var(--accent-h), + var(--accent-s), + var(--accent-l) + ) !important; + --color-accent-1: hsl( + calc(var(--accent-h) - 1), + calc(var(--accent-s) * 1.01), + calc(var(--accent-l) * 1.075) + ) !important; + --color-accent-2: hsl( + calc(var(--accent-h) - 3), + calc(var(--accent-s) * 1.02), + calc(var(--accent-l) * 1.15) + ) !important; + --color-accent-hsl: + var(--accent-h), var(--accent-s), var(--accent-l) !important; + --color-base-00: #ffffff !important; + --color-base-05: #fcfcfc !important; + --color-base-10: #fafafa !important; + --color-base-100: #222222 !important; + --color-base-20: #f6f6f6 !important; + --color-base-25: #efefef !important; + --color-base-30: #e4e4e4 !important; + --color-base-35: #dadada !important; + --color-base-40: #bdbdbd !important; + --color-base-50: #ababab !important; + --color-base-60: #707070 !important; + --color-base-70: #5c5c5c !important; + --color-blue: var(--blue) !important; + --color-blue-rgb: 8, 109, 221 !important; + --color-cyan: var(--cyan) !important; + --color-cyan-rgb: 0, 191, 188 !important; + --color-green: var(--green) !important; + --color-green-rgb: 8, 185, 78 !important; + --color-orange: var(--orange) !important; + --color-orange-rgb: 236, 117, 0 !important; + --color-pink: var(--magenta) !important; + --color-pink-rgb: 213, 57, 132 !important; + --color-purple: var(--magenta) !important; + --color-purple-rgb: 120, 82, 238 !important; + --color-red: var(--red) !important; + --color-red-rgb: 233, 49, 71 !important; + --color-yellow: var(--yellow) !important; + --color-yellow-rgb: 224, 172, 0 !important; + --corner-shape: round !important; + --cursor: default !important; + --cursor-link: pointer !important; + --dialog-max-height: 85vh !important; + --dialog-max-width: 80vw !important; + --dialog-width: 560px !important; + --direction: 1 !important; + --divider-color: var(--background-modifier-border) !important; + --divider-color-hover: var(--interactive-accent) !important; + --divider-vertical-height: 100% !important; + --divider-width: 1px !important; + --divider-width-hover: 3px !important; + --drag-ghost-background: rgba(0, 0, 0, 0.85) !important; + --drag-ghost-text-color: #fff !important; + --drag-item-shadow: 0 2px 8px var(--background-modifier-box-shadow) !important; + --dropdown-background: var(--interactive-normal) !important; + --dropdown-background-blend-mode: hard-light, normal !important; + --dropdown-background-hover: var(--interactive-hover) !important; + --dropdown-background-position: + var(--inset-end) var(--dropdown-icon-inset) top 50%, + var(--inset-end) 0.15em top 50%, 0 0 !important; + --dropdown-background-size: + var(--dropdown-icon-width) auto, 2em 2em, 100% !important; + --dropdown-icon-background: transparent !important; + --dropdown-icon-inset: 0.65em !important; + --dropdown-icon-width: 1em !important; + --dropdown-padding: 0 var(--dropdown-padding-end) 0 + var(--dropdown-padding-start) !important; + --dropdown-padding-end: 2.4em !important; + --dropdown-padding-start: 0.8em !important; + --dropdown-text-align: start !important; + --embed-block-shadow-hover: + 0 0 0 1px var(--background-modifier-border), + inset 0 0 0 1px var(--background-modifier-border) !important; + --embed-border-bottom: none !important; + --embed-border-end: none !important; + --embed-border-start: 2px solid var(--interactive-accent) !important; + --embed-border-top: none !important; + --embed-canvas-max-height: 400px !important; + --embed-max-height: 4000px !important; + --embed-padding: 1.5rem 1.5rem 0.5rem !important; + --file-folding-offset: 24px !important; + --file-header-background: var(--background-primary) !important; + --file-header-background-focused: var(--background-primary) !important; + --file-header-border: var(--border-width) solid transparent !important; + --file-header-font: var(--font-interface) !important; + --file-header-font-size: var(--font-ui-small) !important; + --file-header-font-weight: 400 !important; + --file-header-justify: center !important; + --file-line-width: 700px !important; + --file-margins: var(--file-margins-y) var(--file-margins-x) !important; + --file-margins-x: var(--size-4-8) !important; + --file-margins-y: var(--size-4-8) !important; + --flair-background: var(--interactive-normal) !important; + --flair-color: var(--text-normal) !important; + --focus-ring-outline: 2px solid light-dark(#0060df, #0df) !important; + --font-black: 900 !important; + --font-bold: 700 !important; + --font-default: + ui-sans-serif, -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", + "Google Sans Flex", Roboto, "Inter Variable", "Inter", "Apple Color Emoji", + "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important; + --font-extrabold: 800 !important; + --font-extralight: 200 !important; + --font-interface: + var(--font-interface-override), var(--font-interface-theme), + var(--default-font, "??"), var(--font-default) !important; + --font-interface-override: "??" !important; + --font-interface-theme: "??" !important; + --font-light: 300 !important; + --font-medium: 500 !important; + --font-mermaid: var(--font-text) !important; + --font-monospace: + var(--font-monospace-override), var(--font-monospace-theme), + var(--font-monospace-default) !important; + --font-monospace-default: + ui-monospace, SFMono-Regular, "Cascadia Mono", "Roboto Mono", + "DejaVu Sans Mono", "Liberation Mono", Menlo, Monaco, "Consolas", + "Source Code Pro", monospace !important; + --font-monospace-override: "??" !important; + --font-monospace-theme: "??" !important; + --font-normal: 400 !important; + --font-print: + var(--font-print-override), var(--font-text-override), + var(--font-text-theme), "Arial" !important; + --font-print-override: "??" !important; + --font-semibold: 600 !important; + --font-small: 0.933em !important; + --font-smaller: 0.875em !important; + --font-smallest: 0.8em !important; + --font-text: + var(--font-text-override), var(--font-text-theme), var(--font-default) !important; + --font-text-override: "??" !important; + --font-text-size: 16px !important; + --font-text-theme: "??" !important; + --font-thin: 100 !important; + --font-ui-large: 20px !important; + --font-ui-medium: 15px !important; + --font-ui-small: 13px !important; + --font-ui-smaller: 12px !important; + --footnote-divider-color: var(--metadata-divider-color) !important; + --footnote-divider-color-active: var( + --metadata-divider-color-focus + ) !important; + --footnote-divider-width: var(--border-width) !important; + --footnote-gap: var(--size-4-1) !important; + --footnote-id-color: var(--text-muted) !important; + --footnote-id-color-no-occurrences: var(--text-faint) !important; + --footnote-id-delimiter: "." !important; + --footnote-input-background: var(--metadata-input-background) !important; + --footnote-input-background-active: var( + --metadata-input-background-active + ) !important; + --footnote-line-height: var(--line-height-normal) !important; + --footnote-padding-block: var(--size-2-3) !important; + --footnote-padding-inline: var(--size-2-3) !important; + --footnote-radius: var(--radius-s) !important; + --footnote-size: var(--font-smaller) !important; + --frame-left-space: 0px !important; + --frame-right-space: 126px !important; + --graph-controls-width: 240px !important; + --graph-line: var(--comment) !important; + --graph-node: var(--fg) !important; + --graph-node-attachment: var(--blue) !important; + --graph-node-focused: var(--text-accent) !important; + --graph-node-tag: var(--orange) !important; + --graph-node-unresolved: var(--text-faint) !important; + --graph-text: var(--text-normal) !important; + --h1-letter-spacing: -0.015em !important; + --h1-line-height: 1.2 !important; + --h1-size: 1.618em !important; + --h1-style: normal !important; + --h1-variant: normal !important; + --h1-weight: 700 !important; + --h2-letter-spacing: -0.011em !important; + --h2-line-height: 1.2 !important; + --h2-size: 1.462em !important; + --h2-style: normal !important; + --h2-variant: normal !important; + --h2-weight: 680 !important; + --h3-letter-spacing: -0.008em !important; + --h3-line-height: 1.3 !important; + --h3-size: 1.318em !important; + --h3-style: normal !important; + --h3-variant: normal !important; + --h3-weight: 660 !important; + --h4-letter-spacing: -0.005em !important; + --h4-line-height: 1.4 !important; + --h4-size: 1.188em !important; + --h4-style: normal !important; + --h4-variant: normal !important; + --h4-weight: 640 !important; + --h5-letter-spacing: -0.002em !important; + --h5-line-height: var(--line-height-normal) !important; + --h5-size: 1.076em !important; + --h5-style: normal !important; + --h5-variant: normal !important; + --h5-weight: 620 !important; + --h6-letter-spacing: 0em !important; + --h6-line-height: var(--line-height-normal) !important; + --h6-size: 1em !important; + --h6-style: normal !important; + --h6-variant: normal !important; + --h6-weight: 600 !important; + --header-height: 40px !important; + --heading-formatting: var(--text-faint) !important; + --heading-spacing: calc(var(--p-spacing) * 2.5) !important; + --highlight-mix-blend-mode: darken !important; + --hr-color: var(--background-modifier-border) !important; + --hr-thickness: 2px !important; + --icon-color: var(--text-muted) !important; + --icon-color-active: var(--magenta) !important; + --icon-color-focused: var(--magenta) !important; + --icon-color-hover: var(--blue) !important; + --icon-l: 18px !important; + --icon-l-stroke-width: 1.75px !important; + --icon-m: 18px !important; + --icon-m-stroke-width: 1.75px !important; + --icon-opacity: 0.85 !important; + --icon-opacity-active: 1 !important; + --icon-opacity-hover: 1 !important; + --icon-s: 16px !important; + --icon-s-stroke-width: 2px !important; + --icon-xl: 32px !important; + --icon-xl-stroke-width: 1.25px !important; + --icon-xs: 14px !important; + --icon-xs-stroke-width: 2px !important; + --indent-size: 4 !important; + --indent-unit: 0.5625em !important; + --indentation-guide-color: var(--comment) !important; + --indentation-guide-color-active: var(--comment) !important; + --indentation-guide-editing-indent: 0.85em !important; + --indentation-guide-reading-indent: -0.85em !important; + --indentation-guide-source-indent: 0.25em !important; + --indentation-guide-width: var(--border-width) !important; + --indentation-guide-width-active: var(--border-width) !important; + --inline-title-line-height: var(--h1-line-height) !important; + --inline-title-margin-bottom: 0.5em !important; + --inline-title-size: var(--h1-size) !important; + --inline-title-style: var(--h1-style) !important; + --inline-title-variant: var(--h1-variant) !important; + --inline-title-weight: var(--h1-weight) !important; + --input-corner-shape: var(--corner-shape) !important; + --input-date-separator: var(--text-faint) !important; + --input-font-weight: var(--font-normal) !important; + --input-icon-inset: var(--size-4-1) !important; + --input-placeholder-color: var(--text-faint) !important; + --input-shadow: + inset 0 0 0 1px rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.065), + 0 0 0 0 transparent !important; + --input-shadow-hover: + inset 0 0 0 1px rgba(0, 0, 0, 0.17), 0 1px 2px 0 rgba(0, 0, 0, 0.1), + 0 0 0 0 transparent !important; + --inset-end: right !important; + --inset-start: left !important; + --interactive-accent: hsl( + var(--accent-h), + var(--accent-s), + var(--accent-l) + ) !important; + --interactive-accent-hover: var(--blue) !important; + --interactive-accent-hsl: var(--color-accent-hsl) !important; + --interactive-hover: var(--bg) !important; + --interactive-normal: var(--bg_dark) !important; + --keyboard-height: 0px !important; + --layer-cover: 5 !important; + --layer-dragged-item: 80 !important; + --layer-menu: 65 !important; + --layer-modal: 50 !important; + --layer-notice: 60 !important; + --layer-popover: 30 !important; + --layer-sidedock: 10 !important; + --layer-slides: 45 !important; + --layer-status-bar: 15 !important; + --layer-tooltip: 70 !important; + --line-height-normal: 1.5 !important; + --line-height-tight: 1.3 !important; + --link-color: var(--magenta) !important; + --link-color-hover: var(--cyan) !important; + --link-decoration: underline !important; + --link-decoration-hover: underline !important; + --link-decoration-thickness: auto !important; + --link-external-color: var(--magenta) !important; + --link-external-color-hover: var(--cyan) !important; + --link-external-decoration: underline !important; + --link-external-decoration-hover: underline !important; + --link-external-filter: invert(62%) sepia(9%) saturate(266%) + hue-rotate(189deg) brightness(97%) contrast(88%) !important; + --link-unresolved-color: var(--text-accent) !important; + --link-unresolved-decoration-color: color-mix( + in oklch, + var(--interactive-accent) 30%, + transparent + ) !important; + --link-unresolved-decoration-style: solid !important; + --link-unresolved-filter: none !important; + --link-unresolved-opacity: 0.7 !important; + --link-weight: var(--font-weight) !important; + --list-bullet-border: none !important; + --list-bullet-end-padding: 1.3rem !important; + --list-bullet-radius: 50% !important; + --list-bullet-size: 0.3em !important; + --list-bullet-transform: none !important; + --list-indent: calc(var(--indent-unit) * var(--indent-size)) !important; + --list-indent-editing: 0.75em !important; + --list-indent-source: 0 !important; + --list-marker-color: var(--text-faint) !important; + --list-marker-color-collapsed: var(--text-accent) !important; + --list-marker-color-hover: var(--text-muted) !important; + --list-numbered-style: decimal !important; + --list-spacing: 0.075em !important; + --loading-icon-delay: 400ms !important; + --menu-backdrop-filter: none !important; + --menu-background: var(--background-secondary) !important; + --menu-border-color: var(--background-modifier-border-hover) !important; + --menu-border-width: var(--border-width) !important; + --menu-corner-shape: var(--corner-shape) !important; + --menu-padding: var(--size-2-3) !important; + --menu-radius: var(--radius-m) !important; + --menu-scroll-mask: linear-gradient( + to bottom, + rgba(0, 0, 0, 0.05) 0%, + rgba(0, 0, 0, 0.1) 48px + ) !important; + --menu-shadow: var(--shadow-s) !important; + --metadata-background: transparent !important; + --metadata-border-color: var(--background-modifier-border) !important; + --metadata-border-radius: 0 !important; + --metadata-border-width: 0 !important; + --metadata-display-editing: block !important; + --metadata-display-reading: block !important; + --metadata-divider-color: var(--background-modifier-border) !important; + --metadata-divider-color-focus: transparent !important; + --metadata-divider-color-hover: transparent !important; + --metadata-divider-width: 0 !important; + --metadata-gap: 3px !important; + --metadata-input-background: transparent !important; + --metadata-input-background-active: var( + --background-modifier-hover + ) !important; + --metadata-input-background-hover: transparent !important; + --metadata-input-font: var(--font-interface) !important; + --metadata-input-font-size: var(--font-smaller) !important; + --metadata-input-height: calc(var(--font-text-size) * 1.75) !important; + --metadata-input-longtext-lines: 3 !important; + --metadata-input-padding: var(--size-4-1) var(--size-4-2) !important; + --metadata-input-text-color: var(--text-normal) !important; + --metadata-label-background: transparent !important; + --metadata-label-background-active: var( + --background-modifier-hover + ) !important; + --metadata-label-background-hover: transparent !important; + --metadata-label-font: var(--font-interface) !important; + --metadata-label-font-size: var(--font-smaller) !important; + --metadata-label-text-color: var(--text-muted) !important; + --metadata-label-text-color-hover: var(--text-muted) !important; + --metadata-label-width: 9em !important; + --metadata-max-width: none !important; + --metadata-padding: var(--size-4-2) 0 !important; + --metadata-property-background: transparent !important; + --metadata-property-background-active: var( + --background-modifier-hover + ) !important; + --metadata-property-background-hover: transparent !important; + --metadata-property-box-shadow-focus: 0 0 0 2px + var(--background-modifier-border-focus) !important; + --metadata-property-box-shadow-hover: 0 0 0 var(--border-width) + var(--background-modifier-border-hover) !important; + --metadata-property-corner-shape: var(--corner-shape) !important; + --metadata-property-corner-shape-focus: var(--corner-shape) !important; + --metadata-property-corner-shape-hover: var(--corner-shape) !important; + --metadata-property-padding: 0 !important; + --metadata-property-radius: 6px !important; + --metadata-property-radius-focus: 6px !important; + --metadata-property-radius-hover: 6px !important; + --metadata-sidebar-input-font-size: var(--font-ui-small) !important; + --metadata-sidebar-label-font-size: var(--font-ui-small) !important; + --modal-background: var(--background-primary) !important; + --modal-border-color: var(--bg_highlight) !important; + --modal-border-width: var(--border-width) !important; + --modal-community-sidebar-width: 280px !important; + --modal-header-height: auto !important; + --modal-height: 85vh !important; + --modal-max-height: 1000px !important; + --modal-max-width: 1100px !important; + --modal-max-width-narrow: 800px !important; + --modal-radius: var(--radius-l) !important; + --modal-shadow: none !important; + --modal-sidebar-background: var(--modal-background) !important; + --modal-width: 90vw !important; + --mono-0: white !important; + --mono-100: black !important; + --mono-rgb-0: 255, 255, 255 !important; + --mono-rgb-100: 0, 0, 0 !important; + --nav-collapse-icon-color: var(--collapse-icon-color) !important; + --nav-collapse-icon-color-collapsed: var(--text-faint) !important; + --nav-heading-color: var(--text-normal) !important; + --nav-heading-color-collapsed: var(--text-faint) !important; + --nav-heading-color-collapsed-hover: var(--text-muted) !important; + --nav-heading-color-hover: var(--text-normal) !important; + --nav-heading-weight: var(--font-medium) !important; + --nav-heading-weight-hover: var(--font-medium) !important; + --nav-indentation-guide-color: var(--bg_highlight) !important; + --nav-indentation-guide-width: var(--indentation-guide-width) !important; + --nav-item-background-active: var(--bg_highlight) !important; + --nav-item-background-hover: var(--bg_highlight) !important; + --nav-item-background-selected: color-mix( + in oklch, + var(--color-accent) 15%, + transparent + ) !important; + --nav-item-children-margin-start: var(--size-4-3) !important; + --nav-item-children-padding-start: var(--size-2-2) !important; + --nav-item-color: var(--text-muted) !important; + --nav-item-color-active: var(--red) !important; + --nav-item-color-highlighted: var(--text-accent) !important; + --nav-item-color-hover: var(--fg) !important; + --nav-item-color-selected: var(--text-normal) !important; + --nav-item-margin-bottom: var(--size-2-1) !important; + --nav-item-padding: var(--size-4-1) var(--size-4-2) var(--size-4-1) + var(--size-4-6) !important; + --nav-item-parent-padding: var(--nav-item-padding) !important; + --nav-item-radius: var(--radius-s) !important; + --nav-item-size: var(--font-ui-small) !important; + --nav-item-white-space: pre !important; + --nav-tag-background: transparent !important; + --nav-tag-color: var(--text-faint) !important; + --nav-tag-color-active: var(--text-muted) !important; + --nav-tag-color-hover: var(--text-muted) !important; + --nav-tag-radius: var(--radius-s) !important; + --nav-tag-weight: var(--font-semibold) !important; + --p-spacing: 1rem !important; + --p-spacing-empty: 0rem !important; + --page-border: 9px solid transparent !important; + --page-margin: 1px auto -8px !important; + --pdf-background: var(--background-primary) !important; + --pdf-page-background: var(--background-primary) !important; + --pdf-shadow: + 0 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.1) !important; + --pdf-sidebar-background: var(--background-primary) !important; + --pdf-spread-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important; + --pdf-thumbnail-shadow: + 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.2) !important; + --pdfViewer-padding-bottom: 0 !important; + --popover-font-size: var(--font-text-size) !important; + --popover-height: 400px !important; + --popover-max-height: 95vh !important; + --popover-pdf-height: 400px !important; + --popover-pdf-width: 450px !important; + --popover-width: 450px !important; + --preferred-text-scale: 1 !important; + --prompt-backdrop-filter: none !important; + --prompt-background: var(--background-primary) !important; + --prompt-border-color: var(--bg_highlight) !important; + --prompt-border-width: var(--border-width) !important; + --prompt-input-height: 40px !important; + --prompt-max-height: 70vh !important; + --prompt-max-width: 80vw !important; + --prompt-width: 700px !important; + --radius-l: 12px !important; + --radius-m: 8px !important; + --radius-s: 4px !important; + --radius-xl: 24px !important; + --raised-background: var(--blur-background) !important; + --raised-blur: var(--blur-s) !important; + --raised-mask: + linear-gradient(white, white) padding-box, + linear-gradient(white, white) border-box !important; + --raised-mask-background: linear-gradient( + to bottom left, + white, + transparent, + white + ) + border-box no-repeat !important; + --raised-mask-border-width: 0 !important; + --raised-mask-composite: exclude, add !important; + --raised-mask-display: block !important; + --ribbon-background: var(--background-secondary) !important; + --ribbon-background-collapsed: var(--background-primary) !important; + --ribbon-padding: var(--size-4-2) var(--size-4-1) var(--size-4-3) !important; + --ribbon-width: 44px !important; + --safe-area-inset-bottom: 0px !important; + --safe-area-inset-left: 0px !important; + --safe-area-inset-right: 0px !important; + --safe-area-inset-top: 0px !important; + --scrollbar-active-thumb-bg: var(--comment) !important; + --scrollbar-bg: var(--bg_dark2) !important; + --scrollbar-border-width: 3px 3px 3px 2px !important; + --scrollbar-height: 12px !important; + --scrollbar-radius: var(--radius-l) !important; + --scrollbar-thumb-bg: var(--comment) !important; + --scrollbar-width: 7px !important; + --search-clear-button-color: var(--text-muted) !important; + --search-clear-button-size: 13px !important; + --search-icon-color: var(--text-muted) !important; + --search-icon-size: 18px !important; + --search-input-corner-shape: var(--input-corner-shape) !important; + --search-input-radius: var(--input-radius) !important; + --search-result-background: var(--background-primary) !important; + --setting-group-heading-color: var(--text-normal) !important; + --setting-group-heading-size: var(--font-ui-medium) !important; + --setting-group-heading-weight: var(--font-semibold) !important; + --setting-group-max-width: 700px !important; + --setting-items-background: var(--background-primary-alt) !important; + --setting-items-border-color: var(--background-modifier-border) !important; + --setting-items-border-width: 0 !important; + --setting-items-divider-width: var(--border-width) !important; + --setting-items-padding-x: var(--size-4-5) !important; + --setting-items-padding-y: var(--size-4-5) !important; + --setting-items-radius: var(--radius-l) !important; + --shadow-l: + 0px 1.8px 7.3px rgba(0, 0, 0, 0.071), 0px 6.3px 24.7px rgba(0, 0, 0, 0.112), + 0px 15px 30px rgba(0, 0, 0, 0.1) !important; + --shadow-s: + 0px 1px 2px rgba(0, 0, 0, 0.028), 0px 3.4px 6.7px rgba(0, 0, 0, 0.042), + 0px 15px 30px rgba(0, 0, 0, 0.07) !important; + --shiki-active-tab-border-color: var(--shiki-highlight-neutral) !important; + --shiki-active-tab-border-width: 2px !important; + --shiki-code-background: var(--code-background) !important; + --shiki-code-block-border-color: transparent !important; + --shiki-code-block-border-radius: var(--code-radius) !important; + --shiki-code-block-border-width: 0px !important; + --shiki-code-block-spacing: var(--p-spacing) !important; + --shiki-code-comment: var(--text-faint) !important; + --shiki-code-function: var(--color-green) !important; + --shiki-code-important: var(--color-orange) !important; + --shiki-code-keyword: var(--color-pink) !important; + --shiki-code-normal: var(--text-muted) !important; + --shiki-code-property: var(--color-cyan) !important; + --shiki-code-punctuation: var(--text-muted) !important; + --shiki-code-string: var(--color-yellow) !important; + --shiki-code-value: var(--color-purple) !important; + --shiki-gutter-border-color: var(--background-modifier-border) !important; + --shiki-gutter-border-width: var(--border-width) !important; + --shiki-gutter-text-color: var(--text-faint) !important; + --shiki-gutter-text-color-highlight: var(--shiki-code-normal) !important; + --shiki-highlight-green: rgba(var(--color-green-rgb), 0.5) !important; + --shiki-highlight-green-background: rgba( + var(--color-green-rgb), + 0.1 + ) !important; + --shiki-highlight-neutral: var(--shiki-code-normal) !important; + --shiki-highlight-neutral-background: rgba( + var(--mono-rgb-100), + 0.05 + ) !important; + --shiki-highlight-red: rgba(var(--color-red-rgb), 0.5) !important; + --shiki-highlight-red-background: rgba(var(--color-red-rgb), 0.1) !important; + --shiki-terminal-dots-color: var(--text-faint) !important; + --shiki-tooltip-background: var(--background-modifier-message) !important; + --shiki-tooltip-text-color: #fafafa !important; + --sidebar-left-toggle-inner-width: 8.33% !important; + --sidebar-left-toggle-inner-width-open: 24% !important; + --sidebar-markdown-font-size: calc(var(--font-text-size) * 0.9) !important; + --sidebar-right-toggle-inner-width: 8.33% !important; + --sidebar-right-toggle-inner-width-open: 24% !important; + --sidebar-tab-text-display: none !important; + --size-2-1: 2px !important; + --size-2-2: 4px !important; + --size-2-3: 6px !important; + --size-4-1: 4px !important; + --size-4-10: 40px !important; + --size-4-12: 48px !important; + --size-4-16: 64px !important; + --size-4-18: 72px !important; + --size-4-2: 8px !important; + --size-4-3: 12px !important; + --size-4-4: 16px !important; + --size-4-5: 20px !important; + --size-4-6: 24px !important; + --size-4-8: 32px !important; + --size-4-9: 36px !important; + --slider-s-thumb-position: -5px !important; + --slider-s-thumb-size: 15px !important; + --slider-thumb-border-color: var( + --background-modifier-border-hover + ) !important; + --slider-thumb-border-width: var(--border-width) !important; + --slider-thumb-height: 18px !important; + --slider-thumb-radius: var(--slider-thumb-height) !important; + --slider-thumb-width: 18px !important; + --slider-thumb-y: -6px !important; + --slider-track-background: var(--bg_highlight) !important; + --slider-track-height: 4px !important; + --slider-value-font-size: var(--font-ui-small) !important; + --slider-value-font-weight: var(--input-font-weight) !important; + --spreadHorizontalWrapped-margin-LR: -3.5px !important; + --status-bar-background: var(--background-secondary) !important; + --status-bar-border-color: var(--divider-color) !important; + --status-bar-border-width: var(--border-width) 0 0 var(--border-width) !important; + --status-bar-font-size: var(--font-ui-smaller) !important; + --status-bar-position: fixed !important; + --status-bar-radius: var(--radius-m) 0 0 0 !important; + --status-bar-text-color: var(--text-muted) !important; + --suggestion-backdrop-filter: none !important; + --suggestion-background: var(--background-primary) !important; + --swatch-height: 22px !important; + --swatch-radius: 14px !important; + --swatch-shadow: inset 0 0 0 1px + color-mix(in oklch, var(--mono-100) 15%, transparent) !important; + --swatch-width: 22px !important; + --sync-avatar-color-1: var(--color-red) !important; + --sync-avatar-color-2: var(--color-orange) !important; + --sync-avatar-color-3: var(--color-yellow) !important; + --sync-avatar-color-4: var(--color-green) !important; + --sync-avatar-color-5: var(--color-cyan) !important; + --sync-avatar-color-6: var(--color-blue) !important; + --sync-avatar-color-7: var(--color-purple) !important; + --sync-avatar-color-8: var(--color-pink) !important; + --sync-avatar-color-current-user: transparent !important; + --tab-background-active: var(--background-primary) !important; + --tab-curve: 6px !important; + --tab-divider-color: var(--background-modifier-border-hover) !important; + --tab-font-size: var(--font-ui-small) !important; + --tab-max-width: 320px !important; + --tab-outline-color: var(--divider-color) !important; + --tab-outline-width: 1px !important; + --tab-radius: var(--radius-s) !important; + --tab-radius-active: 6px 6px 0 0 !important; + --tab-stacked-font-size: var(--font-ui-small) !important; + --tab-stacked-font-weight: 400 !important; + --tab-stacked-header-width: var(--header-height) !important; + --tab-stacked-pane-width: 700px !important; + --tab-stacked-shadow: -8px 0 8px 0 rgba(0, 0, 0, 0.05) !important; + --tab-stacked-text-align: start !important; + --tab-stacked-text-transform: rotate(0deg) !important; + --tab-stacked-text-writing-mode: vertical-lr !important; + --tab-switcher-background: var(--background-secondary) !important; + --tab-switcher-menubar-background: linear-gradient( + to top, + var(--background-secondary), + transparent + ) !important; + --tab-switcher-preview-background-shadow: 0 4px 30px 2px rgba(0, 0, 0, 0.2) !important; + --tab-switcher-preview-radius: var(--radius-xl) !important; + --tab-switcher-preview-shadow: 0 0 0 1px + color-mix(in oklch, var(--mono-100) 5%, transparent) !important; + --tab-switcher-preview-shadow-active: 0 0 0 2px var(--color-accent) !important; + --tab-text-color: var(--text-faint) !important; + --tab-text-color-active: var(--text-muted) !important; + --tab-text-color-focused: var(--text-muted) !important; + --tab-text-color-focused-active: rgba(var(--red_x), 0.8) !important; + --tab-text-color-focused-active-current: var(--red) !important; + --tab-text-color-focused-highlighted: var(--text-accent) !important; + --tab-width: 200px !important; + --table-add-button-background: transparent !important; + --table-add-button-border-color: var(--background-modifier-border) !important; + --table-add-button-border-width: var(--table-border-width) !important; + --table-background: transparent !important; + --table-border-width: 1px !important; + --table-cell-vertical-alignment: top !important; + --table-column-alt-background: var(--table-background) !important; + --table-column-first-border-width: var(--table-border-width) !important; + --table-column-last-border-width: var(--table-border-width) !important; + --table-column-max-width: none !important; + --table-column-min-width: 6ch !important; + --table-drag-handle-background: transparent !important; + --table-drag-handle-background-active: var( + --table-selection-border-color + ) !important; + --table-drag-handle-color: var(--text-faint) !important; + --table-drag-handle-color-active: var(--text-on-accent) !important; + --table-drop-indicator-half-width: 2px !important; + --table-header-background: var(--bg_dark2) !important; + --table-header-border-color: var(--table-border-color) !important; + --table-header-border-width: var(--table-border-width) !important; + --table-header-color: var(--text-normal) !important; + --table-header-size: var(--table-text-size) !important; + --table-header-weight: calc( + var(--font-weight) + var(--bold-modifier) + ) !important; + --table-line-height: var(--line-height-tight) !important; + --table-row-alt-background: var(--table-background) !important; + --table-row-alt-background-hover: var(--table-background) !important; + --table-row-background-hover: var(--table-background) !important; + --table-row-last-border-width: var(--table-border-width) !important; + --table-selection: color-mix( + in oklch, + var(--color-accent) 10%, + transparent + ) !important; + --table-selection-blend-mode: var(--highlight-mix-blend-mode) !important; + --table-selection-border-color: var(--interactive-accent) !important; + --table-selection-border-radius: 4px !important; + --table-selection-border-width: 2px !important; + --table-text-size: var(--font-text-size) !important; + --table-white-space: break-spaces !important; + --tag-background: rgba(var(--magenta_x), 0.15) !important; + --tag-background-hover: rgba(var(--cyan_x), 0.15) !important; + --tag-border-color: color-mix( + in oklch, + var(--interactive-accent) 15%, + transparent + ) !important; + --tag-border-color-hover: color-mix( + in oklch, + var(--interactive-accent) 15%, + transparent + ) !important; + --tag-border-width: 0px !important; + --tag-color: var(--magenta) !important; + --tag-color-hover: var(--cyan) !important; + --tag-corner-shape: round !important; + --tag-decoration: none !important; + --tag-decoration-hover: none !important; + --tag-padding-x: 0.65em !important; + --tag-padding-y: 0.25em !important; + --tag-radius: 2em !important; + --tag-size: var(--font-smaller) !important; + --text-accent-hover: var(--cyan) !important; + --text-error: var(--red1) !important; + --text-highlight-bg: rgba(var(--orange_x), 0.25) !important; + --text-highlight-bg-rgb: 255, 208, 0 !important; + --text-muted: var(--fg_dark) !important; + --text-on-accent: var(--bg) !important; + --text-on-accent-inverted: black !important; + --text-selection: rgba(var(--blue0_x), 0.6) !important; + --text-success: var(--color-green) !important; + --text-warning: var(--color-orange) !important; + --titlebar-background-focused: var(--background-secondary-alt) !important; + --titlebar-border-color: var(--background-modifier-border) !important; + --titlebar-border-width: 0px !important; + --titlebar-height: 30px !important; + --titlebar-text-color: var(--text-muted) !important; + --titlebar-text-color-focused: var(--text-normal) !important; + --titlebar-text-weight: var(--font-bold) !important; + --toggle-border-width: 2px !important; + --toggle-radius: 18px !important; + --toggle-s-border-width: 2px !important; + --toggle-s-thumb-height: 15px !important; + --toggle-s-thumb-width: 15px !important; + --toggle-s-width: 34px !important; + --toggle-thumb-color: var(--bg) !important; + --toggle-thumb-height: 18px !important; + --toggle-thumb-radius: 18px !important; + --toggle-thumb-width: 18px !important; + --toggle-width: 40px !important; + --touch-radius-l: var(--touch-size-l) !important; + --touch-radius-m: var(--touch-size-m) !important; + --touch-radius-s: var(--touch-size-s) !important; + --touch-radius-xl: var(--touch-size-xl) !important; + --touch-radius-xs: var(--touch-size-xs) !important; + --touch-radius-xxs: var(--touch-size-xxs) !important; + --touch-size-l: 52px !important; + --touch-size-m: 44px !important; + --touch-size-s: 40px !important; + --touch-size-xl: 60px !important; + --touch-size-xs: 30px !important; + --touch-size-xxs: 24px !important; + --traffic-lights-offset-x: var(--header-height) !important; + --traffic-lights-offset-y: var(--header-height) !important; + --vault-profile-actions-display: flex !important; + --vault-profile-color: var(--text-normal) !important; + --vault-profile-color-hover: var(--vault-profile-color) !important; + --vault-profile-display: flex !important; + --vault-profile-font-size: var(--font-ui-small) !important; + --vault-profile-font-weight: var(--font-medium) !important; + --vault-profile-order: 2 !important; + --vault-profile-radius: var(--radius-s) !important; + --viewer-container-height: 0 !important; + --workspace-background-translucent: color-mix( + in oklch, + var(--mono-0) 60%, + transparent + ) !important; + --xfa-focus-outline: auto !important; + --xfa-unfocused-field-background: url("data:image/svg+xml,%3Csvg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' style='fill:rgba(0, 54, 255, 0.13);'/%3E%3C/svg%3E") !important; + --zoom-factor: 1 !important; + --background-modifier-form-field-highlighted: var(--bg_dark) !important; + --image-radius: 0px !important; + --table-width: 88cqw !important; + --raised-shadow: var(--shadow-xs) !important; + --shadow-edges: 0 0 transparent !important; + --shadow-xs: + 0 1px 6px rgba(0, 0, 0, 0.015), 0 4px 24px rgba(0, 0, 0, 0.065), + var(--shadow-edges) !important; + --h1-color: var(--red) !important; + --h2-color: var(--yellow) !important; + --h3-color: var(--green) !important; + --h4-color: var(--cyan) !important; + --h5-color: var(--blue) !important; + --h6-color: var(--magenta) !important; + --inline-title-color: var(--h1-color) !important; + --default-font: '"JetBrains Mono", monospace, "Inter", sans-serif' !important; + --text-error-hover: var(--red) !important; + --table-header-background-hover: var(--bg_dark2) !important; + --bold-color: var(--cyan) !important; + --italic-color: var(--cyan) !important; + --interactive-success: var(--green) !important; + --green: rgb(var(--green_x)) !important; + --green_x: 51, 99, 92 !important; + --orange: rgb(var(--orange_x)) !important; + --orange_x: 150, 80, 39 !important; + --red: rgb(var(--red_x)) !important; + --red_x: 140, 67, 81 !important; + --yellow: rgb(var(--yellow_x)) !important; + --yellow_x: 143, 94, 21 !important; + --blue: rgb(var(--blue_x)) !important; + --pink: rgb(var(--pink_x)) !important; + --comment: rgb(var(--comment_x)) !important; + --cyan: rgb(var(--cyan_x)) !important; + --embed-background: var(--bg_dark) !important; + --flashing-background: rgba(var(--blue0_x), 0.3) !important; + --mermaid-loopline: var(--blue) !important; + --mermaid-note: var(--blue0) !important; + --nav-file-tag: rgba(var(--yellow_x), 0.9) !important; + --date-background-color: var(--bg_highlight) !important; + --magenta: rgb(var(--magenta_x)) !important; + --teal: rgb(var(--teal_x)) !important; + --fg: rgb(var(--fg_x)) !important; + --bg: rgb(var(--bg_x)) !important; + --mermaid-actor: var(--fg_dark) !important; + --bg_dark2: rgb(var(--bg_dark2_x)) !important; + --bg_highlight: rgb(var(--bg_highlight_x)) !important; + --bg_highlight_dark: rgb(var(--bg_highlight_dark_x)) !important; + --blue0: rgb(var(--blue0_x)) !important; + --color_blue_rgb: var(--blue_x) !important; + --color_cyan_rgb: var(--cyan_x) !important; + --color_green_rgb: var(--green_x) !important; + --color_orange_rgb: var(--orange_x) !important; + --color_pink_rgb: var(--magenta_x) !important; + --color_purple_rgb: var(--magenta_x) !important; + --color_red_rgb: var(--red_x) !important; + --color_yellow_rgb: var(--yellow_x) !important; + --fg_dark: rgb(var(--fg_dark_x)) !important; + --red1: rgb(var(--red1_x)) !important; + --unknown: #000000 !important; + --bg_dark: rgb(var(--bg_dark_x)) !important; + --bg_dark_x: 203, 204, 209 !important; + --bg_dark2_x: 188, 189, 194 !important; + --bg_highlight_dark_x: 195, 197, 201 !important; + --bg_highlight_x: 220, 222, 226 !important; + --bg_x: 213, 214, 219 !important; + --blue_x: 52, 84, 138 !important; + --blue0_x: 39, 71, 125 !important; + --comment_x: 150, 153, 163 !important; + --cyan_x: 15, 75, 110 !important; + --date-color: var(--blue) !important; + --fg_dark_x: 39, 46, 75 !important; + --fg_x: 52, 59, 88 !important; + --magenta_x: 90, 74, 120 !important; + --pink_x: 109, 74, 120 !important; + --red1_x: 115, 42, 56 !important; + --teal_x: 22, 103, 117 !important; + --terminal_black: rgb(var(--terminal_black_x)) !important; + --terminal_black_x: 15, 15, 20 !important; + --magent_hsl: 261 24% 38% !important; + --pink_hsl: 286 24% 38% !important; +} + +body.theme-dark { + --bases-table-header-background: var(--background-primary) !important; + --focus-ring-color: var(--csstools-light-dark-toggle--23, #0df) !important; + --tab-container-background: var(--background-secondary) !important; + --bases-embed-border-color: var(--background-modifier-border) !important; + --bases-table-border-color: var(--table-border-color) !important; + --bases-table-header-background-hover: var( + --background-modifier-hover + ) !important; + --table-border-color: var(--background-modifier-border) !important; + --text-accent: var(--magenta) !important; + --text-faint: var(--comment) !important; + --text-normal: var(--fg) !important; + --icon-size: var(--icon-m) !important; + --icon-stroke: var(--icon-m-stroke-width) !important; + --drag-item-background: var(--background-primary) !important; + --titlebar-background: var(--background-secondary) !important; + --scrollbar-native-width: auto !important; + --input-height: 30px !important; + --input-border-width: var(--border-width) !important; + --input-border-width-focus: 2px !important; + --input-radius: 5px !important; + --input-padding: var(--size-4-1) var(--size-4-2) !important; + --background-modifier-border: var(--bg_highlight) !important; + --background-modifier-form-field: var(--bg_dark) !important; + --pill-background: transparent !important; + --pill-background-hover: transparent !important; + --pill-border-color: var(--background-modifier-border) !important; + --pill-border-color-hover: var(--background-modifier-border-hover) !important; + --pill-border-width: var(--border-width) !important; + --pill-color: var(--text-muted) !important; + --pill-color-hover: var(--text-normal) !important; + --pill-color-remove: var(--text-faint) !important; + --pill-color-remove-hover: var(--text-accent) !important; + --pill-decoration: none !important; + --pill-decoration-hover: none !important; + --pill-focus-left-adjust: -4px !important; + --pill-focus-width: calc(100% + 6px) !important; + --pill-padding-x: 0.65em !important; + --pill-padding-y: 0.25em !important; + --pill-radius: 2em !important; + --font-weight: var(--font-normal) !important; + --accent-h: 202 !important; + --accent-l: 75% !important; + --accent-s: 100% !important; + --anim-duration-fast: 140ms !important; + --anim-duration-moderate: 300ms !important; + --anim-duration-none: 0 !important; + --anim-duration-slow: 560ms !important; + --anim-duration-superfast: 70ms !important; + --anim-motion-delay: cubic-bezier(0.65, 0.05, 0.36, 1) !important; + --anim-motion-jumpy: cubic-bezier(0.68, -0.55, 0.27, 1.55) !important; + --anim-motion-smooth: cubic-bezier(0.45, 0.05, 0.55, 0.95) !important; + --anim-motion-swing: cubic-bezier(0, 0.55, 0.45, 1) !important; + --background-modifier-active-hover: var(--bg_highlight) !important; + --background-modifier-border-focus: var(--bg_highlight) !important; + --background-modifier-border-hover: var(--bg_highlight) !important; + --background-modifier-box-shadow: rgba(0, 0, 0, 0.3) !important; + --background-modifier-cover: rgba(var(--bg_dark_x), 0.8) !important; + --background-modifier-error: var(--red1) !important; + --background-modifier-error-hover: var(--red) !important; + --background-modifier-error-rgb: var(--color-red-rgb) !important; + --background-modifier-form-field-hover: var( + --background-modifier-form-field + ) !important; + --background-modifier-hover: var(--bg_highlight) !important; + --background-modifier-message: rgba(var(--bg_highlight_x), 0.9) !important; + --background-modifier-success: var(--green) !important; + --background-modifier-success-rgb: var(--color-green-rgb) !important; + --background-modifier-warning: var(--color-orange) !important; + --background-modifier-warning-hover: var(--color-orange) !important; + --background-primary: var(--bg) !important; + --background-primary-alt: var(--bg) !important; + --background-secondary: var(--bg_dark) !important; + --background-secondary-alt: var(--bg_dark) !important; + --bases-cards-background: var(--background-primary) !important; + --bases-cards-border-width: var(--border-width) !important; + --bases-cards-container-background: transparent !important; + --bases-cards-corner-shape: var(--corner-shape) !important; + --bases-cards-cover-background: var(--background-primary-alt) !important; + --bases-cards-font-size: var(--font-smaller) !important; + --bases-cards-line-height: 24px !important; + --bases-cards-radius: var(--radius-m) !important; + --bases-cards-scale: 1 !important; + --bases-cards-shadow: 0 0 0 1px var(--background-modifier-border) !important; + --bases-cards-shadow-hover: 0 0 0 1px var(--background-modifier-border-hover) !important; + --bases-embed-border-radius: var(--radius-s) !important; + --bases-embed-border-width: 0px !important; + --bases-filter-input-background: var( + --background-modifier-form-field + ) !important; + --bases-filter-menu-width: 520px !important; + --bases-group-heading-property-color: var(--text-muted) !important; + --bases-group-heading-property-display: block !important; + --bases-group-heading-property-size: var(--font-ui-smaller) !important; + --bases-group-heading-property-weight: var(--font-normal) !important; + --bases-group-heading-value-size: var(--font-smaller) !important; + --bases-group-heading-value-weight: var(--font-semibold) !important; + --bases-header-border-width: 0 0 var(--border-width) 0 !important; + --bases-header-height: 40px !important; + --bases-header-padding-end: 2px !important; + --bases-header-padding-start: 2px !important; + --bases-table-cell-background-active: var(--background-primary) !important; + --bases-table-cell-background-disabled: var( + --background-primary-alt + ) !important; + --bases-table-cell-background-selected: var(--table-selection) !important; + --bases-table-cell-radius-active: 2px !important; + --bases-table-cell-radius-focus: 2px !important; + --bases-table-cell-shadow-active: 0 0 0 2px + var(--background-modifier-border-focus) !important; + --bases-table-cell-shadow-focus: 0 0 0 2px var(--interactive-accent) !important; + --bases-table-column-border-width: var(--border-width) !important; + --bases-table-column-max-width: 300 !important; + --bases-table-column-min-width: 40 !important; + --bases-table-container-border-radius: var(--radius-s) !important; + --bases-table-container-border-width: var(--border-width) !important; + --bases-table-font-size: var(--font-smaller) !important; + --bases-table-group-background: var(--background-primary-alt) !important; + --bases-table-group-gap: 10px !important; + --bases-table-header-color: var(--text-muted) !important; + --bases-table-header-icon-display: flex !important; + --bases-table-header-sort-mask: linear-gradient( + to left, + transparent var(--size-4-6), + black var(--size-4-6) + ) !important; + --bases-table-header-weight: var(--font-weight) !important; + --bases-table-row-background-hover: var( + --table-row-background-hover + ) !important; + --bases-table-row-border-width: var(--border-width) !important; + --bases-table-row-height: 30px !important; + --bases-table-summary-background: var(--background-primary) !important; + --bases-table-summary-background-hover: var( + --background-modifier-hover + ) !important; + --bases-toolbar-badge-display: none !important; + --bases-toolbar-label-display: block !important; + --blockquote-background-color: var(--bg_dark) !important; + --blockquote-border-color: var(--interactive-accent) !important; + --blockquote-border-thickness: 2px !important; + --blockquote-font-style: normal !important; + --blur-background: color-mix( + in srgb, + var(--interactive-normal) var(--blur-opacity-s), + transparent + ) + linear-gradient( + var(--interactive-normal), + color-mix( + in srgb, + var(--interactive-normal) var(--blur-opacity-s), + transparent + ) + ) !important; + --blur-brightness: 1.15 !important; + --blur-l: blur(var(--blur-radius-l)) saturate(var(--blur-saturation)) + brightness(var(--blur-brightness)) !important; + --blur-m: blur(var(--blur-radius-m)) saturate(var(--blur-saturation)) + brightness(var(--blur-brightness)) !important; + --blur-opacity-m: 90% !important; + --blur-opacity-s: 65% !important; + --blur-radius-l: 16px !important; + --blur-radius-m: 10px !important; + --blur-radius-s: 6px !important; + --blur-s: blur(var(--blur-radius-s)) saturate(var(--blur-saturation)) + brightness(var(--blur-brightness)) !important; + --blur-saturation: 1.5 !important; + --bold-modifier: 200 !important; + --bold-weight: calc(var(--font-weight) + var(--bold-modifier)) !important; + --border-width: 2px !important; + --button-corner-shape: var(--corner-shape) !important; + --button-radius: var(--input-radius) !important; + --callout-blend-mode: var(--highlight-mix-blend-mode); + --callout-border-opacity: 0.25; + --callout-border-width: 0px; + --callout-bug: var(--red_x); + --callout-content-background: transparent; + --callout-content-padding: 0; + --callout-default: var(--blue_x); + --callout-error: var(--red1_x); + --callout-example: var(--magenta_x); + --callout-fail: var(--red1_x); + --callout-important: var(--green_x); + --callout-info: var(--blue_x); + --callout-padding: var(--size-4-3) var(--size-4-3) var(--size-4-3) + var(--size-4-6); + --callout-question: var(--yellow_x); + --callout-quote: var(--fg_dark_x); + --callout-radius: var(--radius-s); + --callout-success: var(--teal_x); + --callout-summary: var(--cyan_x); + --callout-tip: var(--cyan_x); + --callout-title-padding: 0; + --callout-title-weight: calc(var(--font-weight) + var(--bold-modifier)); + --callout-todo: var(--cyan_x); + --callout-warning: var(--orange_x); + --canvas-background: var(--background-primary) !important; + --canvas-card-label-color: var(--text-faint) !important; + --canvas-color: #7e7e7e !important; + --canvas-color-1: var(--color-red) !important; + --canvas-color-2: var(--color-orange) !important; + --canvas-color-3: var(--color-yellow) !important; + --canvas-color-4: var(--color-green) !important; + --canvas-color-5: var(--color-cyan) !important; + --canvas-color-6: var(--color-purple) !important; + --canvas-controls-icon-size: var(--icon-s) !important; + --canvas-controls-icon-stroke: var(--icon-s-stroke-width) !important; + --canvas-controls-radius: var(--radius-s) !important; + --canvas-dot-pattern: var(--color-base-30) !important; + --caret-color: var(--text-normal) !important; + --checkbox-border-color: var(--comment) !important; + --checkbox-border-color-hover: var(--comment) !important; + --checkbox-color: var(--green) !important; + --checkbox-color-hover: var(--green) !important; + --checkbox-margin-inline-start: 0.85em !important; + --checkbox-marker-color: var(--bg) !important; + --checkbox-radius: var(--radius-l) !important; + --checkbox-size: var(--font-text-size) !important; + --checklist-done-color: var(--text-muted) !important; + --checklist-done-decoration: line-through !important; + --clickable-icon-radius: var(--radius-s) !important; + --code-background: var(--bg_highlight_dark) !important; + --code-border-color: var(--background-modifier-border) !important; + --code-border-width: 0px !important; + --code-bracket-background: var(--background-modifier-hover) !important; + --code-comment: var(--text-faint) !important; + --code-function: var(--color-yellow) !important; + --code-important: var(--color-orange) !important; + --code-keyword: var(--color-pink) !important; + --code-normal: var(--fg) !important; + --code-operator: var(--color-red) !important; + --code-property: var(--color-cyan) !important; + --code-punctuation: var(--text-muted) !important; + --code-radius: var(--radius-s) !important; + --code-size: var(--font-smaller) !important; + --code-string: var(--color-green) !important; + --code-tag: var(--color-red) !important; + --code-value: var(--color-purple) !important; + --code-white-space: pre-wrap !important; + --collapse-icon-color: var(--text-faint) !important; + --collapse-icon-color-collapsed: var(--text-accent) !important; + --color-accent: hsl( + var(--accent-h), + var(--accent-s), + var(--accent-l) + ) !important; + --color-accent-1: hsl( + calc(var(--accent-h) - 3), + calc(var(--accent-s) * 1.02), + calc(var(--accent-l) * 1.15) + ) !important; + --color-accent-2: hsl( + calc(var(--accent-h) - 5), + calc(var(--accent-s) * 1.05), + calc(var(--accent-l) * 1.29) + ) !important; + --color-accent-hsl: + var(--accent-h), var(--accent-s), var(--accent-l) !important; + --color-base-00: #1c1c1c !important; + --color-base-05: #212121 !important; + --color-base-10: #232323 !important; + --color-base-100: #dadada !important; + --color-base-20: #282828 !important; + --color-base-25: #2e2e2e !important; + --color-base-30: #333333 !important; + --color-base-35: #3f3f3f !important; + --color-base-40: #555555 !important; + --color-base-50: #666666 !important; + --color-base-60: #999999 !important; + --color-base-70: #b3b3b3 !important; + --color-blue: var(--blue) !important; + --color-blue-rgb: 2, 122, 255 !important; + --color-cyan: var(--cyan) !important; + --color-cyan-rgb: 83, 223, 221 !important; + --color-green: var(--green) !important; + --color-green-rgb: 68, 207, 110 !important; + --color-orange: var(--orange) !important; + --color-orange-rgb: 233, 151, 63 !important; + --color-pink: var(--magenta) !important; + --color-pink-rgb: 250, 153, 205 !important; + --color-purple: var(--magenta) !important; + --color-purple-rgb: 168, 130, 255 !important; + --color-red: var(--red) !important; + --color-red-rgb: 251, 70, 76 !important; + --color-yellow: var(--yellow) !important; + --color-yellow-rgb: 224, 222, 113 !important; + --corner-shape: round !important; + --cursor: default !important; + --cursor-link: pointer !important; + --dialog-max-height: 85vh !important; + --dialog-max-width: 80vw !important; + --dialog-width: 560px !important; + --direction: 1 !important; + --divider-color: var(--background-modifier-border) !important; + --divider-color-hover: var(--interactive-accent) !important; + --divider-vertical-height: 100% !important; + --divider-width: 1px !important; + --divider-width-hover: 3px !important; + --drag-ghost-background: rgba(0, 0, 0, 0.85) !important; + --drag-ghost-text-color: #fff !important; + --drag-item-shadow: 0 2px 8px var(--background-modifier-box-shadow) !important; + --dropdown-background: var(--interactive-normal) !important; + --dropdown-background-blend-mode: hard-light, normal !important; + --dropdown-background-hover: var(--interactive-hover) !important; + --dropdown-background-position: + var(--inset-end) var(--dropdown-icon-inset) top 50%, + var(--inset-end) 0.15em top 50%, 0 0 !important; + --dropdown-background-size: + var(--dropdown-icon-width) auto, 2em 2em, 100% !important; + --dropdown-icon-background: transparent !important; + --dropdown-icon-inset: 0.65em !important; + --dropdown-icon-width: 1em !important; + --dropdown-padding: 0 var(--dropdown-padding-end) 0 + var(--dropdown-padding-start) !important; + --dropdown-padding-end: 2.4em !important; + --dropdown-padding-start: 0.8em !important; + --dropdown-text-align: start !important; + --embed-block-shadow-hover: + 0 0 0 1px var(--background-modifier-border), + inset 0 0 0 1px var(--background-modifier-border) !important; + --embed-border-bottom: none !important; + --embed-border-end: none !important; + --embed-border-start: 2px solid var(--interactive-accent) !important; + --embed-border-top: none !important; + --embed-canvas-max-height: 400px !important; + --embed-max-height: 4000px !important; + --embed-padding: 1.5rem 1.5rem 0.5rem !important; + --file-folding-offset: 24px !important; + --file-header-background: var(--background-primary) !important; + --file-header-background-focused: var(--background-primary) !important; + --file-header-border: var(--border-width) solid transparent !important; + --file-header-font: var(--font-interface) !important; + --file-header-font-size: var(--font-ui-small) !important; + --file-header-font-weight: 400 !important; + --file-header-justify: center !important; + --file-line-width: 700px !important; + --file-margins: var(--file-margins-y) var(--file-margins-x) !important; + --file-margins-x: var(--size-4-8) !important; + --file-margins-y: var(--size-4-8) !important; + --flair-background: var(--interactive-normal) !important; + --flair-color: var(--text-normal) !important; + --focus-ring-outline: 2px solid light-dark(#0060df, #0df) !important; + --font-black: 900 !important; + --font-bold: 700 !important; + --font-default: + ui-sans-serif, -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", + "Google Sans Flex", Roboto, "Inter Variable", "Inter", "Apple Color Emoji", + "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important; + --font-extrabold: 800 !important; + --font-extralight: 200 !important; + --font-interface: + var(--font-interface-override), var(--font-interface-theme), + var(--default-font, "??"), var(--font-default) !important; + --font-interface-override: "??" !important; + --font-interface-theme: "??" !important; + --font-light: 300 !important; + --font-medium: 500 !important; + --font-mermaid: var(--font-text) !important; + --font-monospace: + var(--font-monospace-override), var(--font-monospace-theme), + var(--font-monospace-default) !important; + --font-monospace-default: + ui-monospace, SFMono-Regular, "Cascadia Mono", "Roboto Mono", + "DejaVu Sans Mono", "Liberation Mono", Menlo, Monaco, "Consolas", + "Source Code Pro", monospace !important; + --font-monospace-override: "??" !important; + --font-monospace-theme: "??" !important; + --font-normal: 400 !important; + --font-print: + var(--font-print-override), var(--font-text-override), + var(--font-text-theme), "Arial" !important; + --font-print-override: "??" !important; + --font-semibold: 600 !important; + --font-small: 0.933em !important; + --font-smaller: 0.875em !important; + --font-smallest: 0.8em !important; + --font-text: + var(--font-text-override), var(--font-text-theme), var(--font-default) !important; + --font-text-override: "??" !important; + --font-text-size: 16px !important; + --font-text-theme: "??" !important; + --font-thin: 100 !important; + --font-ui-large: 20px !important; + --font-ui-medium: 15px !important; + --font-ui-small: 13px !important; + --font-ui-smaller: 12px !important; + --footnote-divider-color: var(--metadata-divider-color) !important; + --footnote-divider-color-active: var( + --metadata-divider-color-focus + ) !important; + --footnote-divider-width: var(--border-width) !important; + --footnote-gap: var(--size-4-1) !important; + --footnote-id-color: var(--text-muted) !important; + --footnote-id-color-no-occurrences: var(--text-faint) !important; + --footnote-id-delimiter: "." !important; + --footnote-input-background: var(--metadata-input-background) !important; + --footnote-input-background-active: var( + --metadata-input-background-active + ) !important; + --footnote-line-height: var(--line-height-normal) !important; + --footnote-padding-block: var(--size-2-3) !important; + --footnote-padding-inline: var(--size-2-3) !important; + --footnote-radius: var(--radius-s) !important; + --footnote-size: var(--font-smaller) !important; + --frame-left-space: 0px !important; + --frame-right-space: 126px !important; + --graph-controls-width: 240px !important; + --graph-line: var(--comment) !important; + --graph-node: var(--fg) !important; + --graph-node-attachment: var(--blue) !important; + --graph-node-focused: var(--text-accent) !important; + --graph-node-tag: var(--orange) !important; + --graph-node-unresolved: var(--text-faint) !important; + --graph-text: var(--text-normal) !important; + --h1-letter-spacing: -0.015em !important; + --h1-line-height: 1.2 !important; + --h1-size: 1.618em !important; + --h1-style: normal !important; + --h1-variant: normal !important; + --h1-weight: 700 !important; + --h2-letter-spacing: -0.011em !important; + --h2-line-height: 1.2 !important; + --h2-size: 1.462em !important; + --h2-style: normal !important; + --h2-variant: normal !important; + --h2-weight: 680 !important; + --h3-letter-spacing: -0.008em !important; + --h3-line-height: 1.3 !important; + --h3-size: 1.318em !important; + --h3-style: normal !important; + --h3-variant: normal !important; + --h3-weight: 660 !important; + --h4-letter-spacing: -0.005em !important; + --h4-line-height: 1.4 !important; + --h4-size: 1.188em !important; + --h4-style: normal !important; + --h4-variant: normal !important; + --h4-weight: 640 !important; + --h5-letter-spacing: -0.002em !important; + --h5-line-height: var(--line-height-normal) !important; + --h5-size: 1.076em !important; + --h5-style: normal !important; + --h5-variant: normal !important; + --h5-weight: 620 !important; + --h6-letter-spacing: 0em !important; + --h6-line-height: var(--line-height-normal) !important; + --h6-size: 1em !important; + --h6-style: normal !important; + --h6-variant: normal !important; + --h6-weight: 600 !important; + --header-height: 40px !important; + --heading-formatting: var(--text-faint) !important; + --heading-spacing: calc(var(--p-spacing) * 2.5) !important; + --highlight-mix-blend-mode: lighten !important; + --hr-color: var(--background-modifier-border) !important; + --hr-thickness: 2px !important; + --icon-color: var(--text-muted) !important; + --icon-color-active: var(--magenta) !important; + --icon-color-focused: var(--magenta) !important; + --icon-color-hover: var(--blue) !important; + --icon-l: 18px !important; + --icon-l-stroke-width: 1.75px !important; + --icon-m: 18px !important; + --icon-m-stroke-width: 1.75px !important; + --icon-opacity: 0.85 !important; + --icon-opacity-active: 1 !important; + --icon-opacity-hover: 1 !important; + --icon-s: 16px !important; + --icon-s-stroke-width: 2px !important; + --icon-xl: 32px !important; + --icon-xl-stroke-width: 1.25px !important; + --icon-xs: 14px !important; + --icon-xs-stroke-width: 2px !important; + --indent-size: 4 !important; + --indent-unit: 0.5625em !important; + --indentation-guide-color: var(--comment) !important; + --indentation-guide-color-active: var(--comment) !important; + --indentation-guide-editing-indent: 0.85em !important; + --indentation-guide-reading-indent: -0.85em !important; + --indentation-guide-source-indent: 0.25em !important; + --indentation-guide-width: var(--border-width) !important; + --indentation-guide-width-active: var(--border-width) !important; + --inline-title-line-height: var(--h1-line-height) !important; + --inline-title-margin-bottom: 0.5em !important; + --inline-title-size: var(--h1-size) !important; + --inline-title-style: var(--h1-style) !important; + --inline-title-variant: var(--h1-variant) !important; + --inline-title-weight: var(--h1-weight) !important; + --input-corner-shape: var(--corner-shape) !important; + --input-date-separator: var(--text-faint) !important; + --input-font-weight: var(--font-normal) !important; + --input-icon-inset: var(--size-4-1) !important; + --input-placeholder-color: var(--text-faint) !important; + --input-shadow: + inset 0 0.5px 0.5px 0.5px rgba(255, 255, 255, 0.09), + 0 2px 4px 0 rgba(0, 0, 0, 0.15), 0 1px 1.5px 0 rgba(0, 0, 0, 0.1), + 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 transparent !important; + --input-shadow-hover: + inset 0 0.5px 1px 0.5px rgba(255, 255, 255, 0.16), + 0 2px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 1.5px 0 rgba(0, 0, 0, 0.2), + 0 1px 2px 0 rgba(0, 0, 0, 0.4), 0 0 0 0 transparent !important; + --inset-end: right !important; + --inset-start: left !important; + --interactive-accent: hsl( + var(--accent-h), + var(--accent-s), + var(--accent-l) + ) !important; + --interactive-accent-hover: var(--blue) !important; + --interactive-accent-hsl: var(--color-accent-hsl) !important; + --interactive-hover: var(--bg) !important; + --interactive-normal: var(--bg_dark) !important; + --keyboard-height: 0px !important; + --layer-cover: 5 !important; + --layer-dragged-item: 80 !important; + --layer-menu: 65 !important; + --layer-modal: 50 !important; + --layer-notice: 60 !important; + --layer-popover: 30 !important; + --layer-sidedock: 10 !important; + --layer-slides: 45 !important; + --layer-status-bar: 15 !important; + --layer-tooltip: 70 !important; + --line-height-normal: 1.5 !important; + --line-height-tight: 1.3 !important; + --link-color: var(--magenta) !important; + --link-color-hover: var(--cyan) !important; + --link-decoration: underline !important; + --link-decoration-hover: underline !important; + --link-decoration-thickness: auto !important; + --link-external-color: var(--magenta) !important; + --link-external-color-hover: var(--cyan) !important; + --link-external-decoration: underline !important; + --link-external-decoration-hover: underline !important; + --link-external-filter: invert(35%) sepia(28%) saturate(681%) + hue-rotate(192deg) brightness(94%) contrast(85%) !important; + --link-unresolved-color: var(--text-accent) !important; + --link-unresolved-decoration-color: color-mix( + in oklch, + var(--interactive-accent) 30%, + transparent + ) !important; + --link-unresolved-decoration-style: solid !important; + --link-unresolved-filter: none !important; + --link-unresolved-opacity: 0.7 !important; + --link-weight: var(--font-weight) !important; + --list-bullet-border: none !important; + --list-bullet-end-padding: 1.3rem !important; + --list-bullet-radius: 50% !important; + --list-bullet-size: 0.3em !important; + --list-bullet-transform: none !important; + --list-indent: calc(var(--indent-unit) * var(--indent-size)) !important; + --list-indent-editing: 0.75em !important; + --list-indent-source: 0 !important; + --list-marker-color: var(--text-faint) !important; + --list-marker-color-collapsed: var(--text-accent) !important; + --list-marker-color-hover: var(--text-muted) !important; + --list-numbered-style: decimal !important; + --list-spacing: 0.075em !important; + --loading-icon-delay: 400ms !important; + --menu-backdrop-filter: none !important; + --menu-background: var(--background-secondary) !important; + --menu-border-color: var(--background-modifier-border-hover) !important; + --menu-border-width: var(--border-width) !important; + --menu-corner-shape: var(--corner-shape) !important; + --menu-padding: var(--size-2-3) !important; + --menu-radius: var(--radius-m) !important; + --menu-scroll-mask: linear-gradient( + to bottom, + rgba(0, 0, 0, 0.05) 0%, + rgba(0, 0, 0, 0.1) 48px + ) !important; + --menu-shadow: var(--shadow-s) !important; + --metadata-background: transparent !important; + --metadata-border-color: var(--background-modifier-border) !important; + --metadata-border-radius: 0 !important; + --metadata-border-width: 0 !important; + --metadata-display-editing: block !important; + --metadata-display-reading: block !important; + --metadata-divider-color: var(--background-modifier-border) !important; + --metadata-divider-color-focus: transparent !important; + --metadata-divider-color-hover: transparent !important; + --metadata-divider-width: 0 !important; + --metadata-gap: 3px !important; + --metadata-input-background: transparent !important; + --metadata-input-background-active: var( + --background-modifier-hover + ) !important; + --metadata-input-background-hover: transparent !important; + --metadata-input-font: var(--font-interface) !important; + --metadata-input-font-size: var(--font-smaller) !important; + --metadata-input-height: calc(var(--font-text-size) * 1.75) !important; + --metadata-input-longtext-lines: 3 !important; + --metadata-input-padding: var(--size-4-1) var(--size-4-2) !important; + --metadata-input-text-color: var(--text-normal) !important; + --metadata-label-background: transparent !important; + --metadata-label-background-active: var( + --background-modifier-hover + ) !important; + --metadata-label-background-hover: transparent !important; + --metadata-label-font: var(--font-interface) !important; + --metadata-label-font-size: var(--font-smaller) !important; + --metadata-label-text-color: var(--text-muted) !important; + --metadata-label-text-color-hover: var(--text-muted) !important; + --metadata-label-width: 9em !important; + --metadata-max-width: none !important; + --metadata-padding: var(--size-4-2) 0 !important; + --metadata-property-background: transparent !important; + --metadata-property-background-active: var( + --background-modifier-hover + ) !important; + --metadata-property-background-hover: transparent !important; + --metadata-property-box-shadow-focus: 0 0 0 2px + var(--background-modifier-border-focus) !important; + --metadata-property-box-shadow-hover: 0 0 0 var(--border-width) + var(--background-modifier-border-hover) !important; + --metadata-property-corner-shape: var(--corner-shape) !important; + --metadata-property-corner-shape-focus: var(--corner-shape) !important; + --metadata-property-corner-shape-hover: var(--corner-shape) !important; + --metadata-property-padding: 0 !important; + --metadata-property-radius: 6px !important; + --metadata-property-radius-focus: 6px !important; + --metadata-property-radius-hover: 6px !important; + --metadata-sidebar-input-font-size: var(--font-ui-small) !important; + --metadata-sidebar-label-font-size: var(--font-ui-small) !important; + --modal-background: var(--background-primary) !important; + --modal-border-color: var(--bg_highlight) !important; + --modal-border-width: var(--border-width) !important; + --modal-community-sidebar-width: 280px !important; + --modal-header-height: auto !important; + --modal-height: 85vh !important; + --modal-max-height: 1000px !important; + --modal-max-width: 1100px !important; + --modal-max-width-narrow: 800px !important; + --modal-radius: var(--radius-l) !important; + --modal-shadow: none !important; + --modal-sidebar-background: var(--modal-background) !important; + --modal-width: 90vw !important; + --mono-0: black !important; + --mono-100: white !important; + --mono-rgb-0: 0, 0, 0 !important; + --mono-rgb-100: 255, 255, 255 !important; + --nav-collapse-icon-color: var(--collapse-icon-color) !important; + --nav-collapse-icon-color-collapsed: var(--text-faint) !important; + --nav-heading-color: var(--text-normal) !important; + --nav-heading-color-collapsed: var(--text-faint) !important; + --nav-heading-color-collapsed-hover: var(--text-muted) !important; + --nav-heading-color-hover: var(--text-normal) !important; + --nav-heading-weight: var(--font-medium) !important; + --nav-heading-weight-hover: var(--font-medium) !important; + --nav-indentation-guide-color: var(--bg_highlight) !important; + --nav-indentation-guide-width: var(--indentation-guide-width) !important; + --nav-item-background-active: var(--bg_highlight) !important; + --nav-item-background-hover: var(--bg_highlight) !important; + --nav-item-background-selected: color-mix( + in oklch, + var(--color-accent) 15%, + transparent + ) !important; + --nav-item-children-margin-start: var(--size-4-3) !important; + --nav-item-children-padding-start: var(--size-2-2) !important; + --nav-item-color: var(--text-muted) !important; + --nav-item-color-active: var(--red) !important; + --nav-item-color-highlighted: var(--text-accent) !important; + --nav-item-color-hover: var(--fg) !important; + --nav-item-color-selected: var(--text-normal) !important; + --nav-item-margin-bottom: var(--size-2-1) !important; + --nav-item-padding: var(--size-4-1) var(--size-4-2) var(--size-4-1) + var(--size-4-6) !important; + --nav-item-parent-padding: var(--nav-item-padding) !important; + --nav-item-radius: var(--radius-s) !important; + --nav-item-size: var(--font-ui-small) !important; + --nav-item-white-space: pre !important; + --nav-tag-background: transparent !important; + --nav-tag-color: var(--text-faint) !important; + --nav-tag-color-active: var(--text-muted) !important; + --nav-tag-color-hover: var(--text-muted) !important; + --nav-tag-radius: var(--radius-s) !important; + --nav-tag-weight: var(--font-semibold) !important; + --p-spacing: 1rem !important; + --p-spacing-empty: 0rem !important; + --page-border: 9px solid transparent !important; + --page-margin: 1px auto -8px !important; + --pdf-background: var(--background-primary) !important; + --pdf-page-background: var(--background-primary) !important; + --pdf-shadow: 0 0 0 1px var(--background-modifier-border) !important; + --pdf-sidebar-background: var(--background-primary) !important; + --pdf-spread-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important; + --pdf-thumbnail-shadow: 0 0 0 1px var(--background-modifier-border) !important; + --pdfViewer-padding-bottom: 0 !important; + --popover-font-size: var(--font-text-size) !important; + --popover-height: 400px !important; + --popover-max-height: 95vh !important; + --popover-pdf-height: 400px !important; + --popover-pdf-width: 450px !important; + --popover-width: 450px !important; + --preferred-text-scale: 1 !important; + --prompt-backdrop-filter: none !important; + --prompt-background: var(--background-primary) !important; + --prompt-border-color: var(--bg_highlight) !important; + --prompt-border-width: var(--border-width) !important; + --prompt-input-height: 40px !important; + --prompt-max-height: 70vh !important; + --prompt-max-width: 80vw !important; + --prompt-width: 700px !important; + --radius-l: 12px !important; + --radius-m: 8px !important; + --radius-s: 4px !important; + --radius-xl: 24px !important; + --raised-background: var(--blur-background) !important; + --raised-blur: var(--blur-s) !important; + --raised-mask: + linear-gradient(white, white) padding-box, + linear-gradient(white, white) border-box !important; + --raised-mask-background: transparent !important; + --raised-mask-border-width: 0 !important; + --raised-mask-composite: exclude, add !important; + --raised-mask-display: block !important; + --ribbon-background: var(--background-secondary) !important; + --ribbon-background-collapsed: var(--background-primary) !important; + --ribbon-padding: var(--size-4-2) var(--size-4-1) var(--size-4-3) !important; + --ribbon-width: 44px !important; + --safe-area-inset-bottom: 0px !important; + --safe-area-inset-left: 0px !important; + --safe-area-inset-right: 0px !important; + --safe-area-inset-top: 0px !important; + --scrollbar-active-thumb-bg: var(--comment) !important; + --scrollbar-bg: var(--bg_dark2) !important; + --scrollbar-border-width: 3px 3px 3px 2px !important; + --scrollbar-height: 12px !important; + --scrollbar-radius: var(--radius-l) !important; + --scrollbar-thumb-bg: var(--comment) !important; + --scrollbar-width: 7px !important; + --search-clear-button-color: var(--text-muted) !important; + --search-clear-button-size: 13px !important; + --search-icon-color: var(--text-muted) !important; + --search-icon-size: 18px !important; + --search-input-corner-shape: var(--input-corner-shape) !important; + --search-input-radius: var(--input-radius) !important; + --search-result-background: var(--background-primary) !important; + --setting-group-heading-color: var(--text-normal) !important; + --setting-group-heading-size: var(--font-ui-medium) !important; + --setting-group-heading-weight: var(--font-semibold) !important; + --setting-group-max-width: 700px !important; + --setting-items-background: var(--background-primary-alt) !important; + --setting-items-border-color: var(--background-modifier-border) !important; + --setting-items-border-width: 0 !important; + --setting-items-divider-width: var(--border-width) !important; + --setting-items-padding-x: var(--size-4-5) !important; + --setting-items-padding-y: var(--size-4-5) !important; + --setting-items-radius: var(--radius-l) !important; + --shadow-l: + 0px 1.8px 7.3px rgba(0, 0, 0, 0.071), 0px 6.3px 24.7px rgba(0, 0, 0, 0.112), + 0px 30px 90px rgba(0, 0, 0, 0.2) !important; + --shadow-s: + 0px 1px 2px rgba(0, 0, 0, 0.121), 0px 3.4px 6.7px rgba(0, 0, 0, 0.179), + 0px 15px 30px rgba(0, 0, 0, 0.3) !important; + --shiki-active-tab-border-color: var(--shiki-highlight-neutral) !important; + --shiki-active-tab-border-width: 2px !important; + --shiki-code-background: var(--code-background) !important; + --shiki-code-block-border-color: transparent !important; + --shiki-code-block-border-radius: var(--code-radius) !important; + --shiki-code-block-border-width: 0px !important; + --shiki-code-block-spacing: var(--p-spacing) !important; + --shiki-code-comment: var(--text-faint) !important; + --shiki-code-function: var(--color-green) !important; + --shiki-code-important: var(--color-orange) !important; + --shiki-code-keyword: var(--color-pink) !important; + --shiki-code-normal: var(--text-muted) !important; + --shiki-code-property: var(--color-cyan) !important; + --shiki-code-punctuation: var(--text-muted) !important; + --shiki-code-string: var(--color-yellow) !important; + --shiki-code-value: var(--color-purple) !important; + --shiki-gutter-border-color: var(--background-modifier-border) !important; + --shiki-gutter-border-width: var(--border-width) !important; + --shiki-gutter-text-color: var(--text-faint) !important; + --shiki-gutter-text-color-highlight: var(--shiki-code-normal) !important; + --shiki-highlight-green: rgba(var(--color-green-rgb), 0.5) !important; + --shiki-highlight-green-background: rgba( + var(--color-green-rgb), + 0.1 + ) !important; + --shiki-highlight-neutral: var(--shiki-code-normal) !important; + --shiki-highlight-neutral-background: rgba( + var(--mono-rgb-100), + 0.05 + ) !important; + --shiki-highlight-red: rgba(var(--color-red-rgb), 0.5) !important; + --shiki-highlight-red-background: rgba(var(--color-red-rgb), 0.1) !important; + --shiki-terminal-dots-color: var(--text-faint) !important; + --shiki-tooltip-background: var(--background-modifier-message) !important; + --shiki-tooltip-text-color: #fafafa !important; + --sidebar-left-toggle-inner-width: 8.33% !important; + --sidebar-left-toggle-inner-width-open: 24% !important; + --sidebar-markdown-font-size: calc(var(--font-text-size) * 0.9) !important; + --sidebar-right-toggle-inner-width: 8.33% !important; + --sidebar-right-toggle-inner-width-open: 24% !important; + --sidebar-tab-text-display: none !important; + --size-2-1: 2px !important; + --size-2-2: 4px !important; + --size-2-3: 6px !important; + --size-4-1: 4px !important; + --size-4-10: 40px !important; + --size-4-12: 48px !important; + --size-4-16: 64px !important; + --size-4-18: 72px !important; + --size-4-2: 8px !important; + --size-4-3: 12px !important; + --size-4-4: 16px !important; + --size-4-5: 20px !important; + --size-4-6: 24px !important; + --size-4-8: 32px !important; + --size-4-9: 36px !important; + --slider-s-thumb-position: -5px !important; + --slider-s-thumb-size: 15px !important; + --slider-thumb-border-color: var( + --background-modifier-border-hover + ) !important; + --slider-thumb-border-width: var(--border-width) !important; + --slider-thumb-height: 18px !important; + --slider-thumb-radius: var(--slider-thumb-height) !important; + --slider-thumb-width: 18px !important; + --slider-thumb-y: -6px !important; + --slider-track-background: var(--bg_highlight) !important; + --slider-track-height: 4px !important; + --slider-value-font-size: var(--font-ui-small) !important; + --slider-value-font-weight: var(--input-font-weight) !important; + --spreadHorizontalWrapped-margin-LR: -3.5px !important; + --status-bar-background: var(--background-secondary) !important; + --status-bar-border-color: var(--divider-color) !important; + --status-bar-border-width: var(--border-width) 0 0 var(--border-width) !important; + --status-bar-font-size: var(--font-ui-smaller) !important; + --status-bar-position: fixed !important; + --status-bar-radius: var(--radius-m) 0 0 0 !important; + --status-bar-text-color: var(--text-muted) !important; + --suggestion-backdrop-filter: none !important; + --suggestion-background: var(--background-primary) !important; + --swatch-height: 22px !important; + --swatch-radius: 14px !important; + --swatch-shadow: inset 0 0 0 1px + color-mix(in oklch, var(--mono-100) 15%, transparent) !important; + --swatch-width: 22px !important; + --sync-avatar-color-1: var(--color-red) !important; + --sync-avatar-color-2: var(--color-orange) !important; + --sync-avatar-color-3: var(--color-yellow) !important; + --sync-avatar-color-4: var(--color-green) !important; + --sync-avatar-color-5: var(--color-cyan) !important; + --sync-avatar-color-6: var(--color-blue) !important; + --sync-avatar-color-7: var(--color-purple) !important; + --sync-avatar-color-8: var(--color-pink) !important; + --sync-avatar-color-current-user: transparent !important; + --tab-background-active: var(--background-primary) !important; + --tab-curve: 6px !important; + --tab-divider-color: var(--background-modifier-border-hover) !important; + --tab-font-size: var(--font-ui-small) !important; + --tab-max-width: 320px !important; + --tab-outline-color: var(--divider-color) !important; + --tab-outline-width: 1px !important; + --tab-radius: var(--radius-s) !important; + --tab-radius-active: 6px 6px 0 0 !important; + --tab-stacked-font-size: var(--font-ui-small) !important; + --tab-stacked-font-weight: 400 !important; + --tab-stacked-header-width: var(--header-height) !important; + --tab-stacked-pane-width: 700px !important; + --tab-stacked-shadow: -8px 0 8px 0 rgba(0, 0, 0, 0.05) !important; + --tab-stacked-text-align: start !important; + --tab-stacked-text-transform: rotate(0deg) !important; + --tab-stacked-text-writing-mode: vertical-lr !important; + --tab-switcher-background: var(--background-secondary) !important; + --tab-switcher-menubar-background: linear-gradient( + to top, + var(--background-secondary), + transparent + ) !important; + --tab-switcher-preview-background-shadow: 0 4px 30px 2px rgba(0, 0, 0, 0.2) !important; + --tab-switcher-preview-radius: var(--radius-xl) !important; + --tab-switcher-preview-shadow: 0 0 0 1px + color-mix(in oklch, var(--mono-100) 5%, transparent) !important; + --tab-switcher-preview-shadow-active: 0 0 0 2px var(--color-accent) !important; + --tab-text-color: var(--text-faint) !important; + --tab-text-color-active: var(--text-muted) !important; + --tab-text-color-focused: var(--text-muted) !important; + --tab-text-color-focused-active: rgba(var(--red_x), 0.8) !important; + --tab-text-color-focused-active-current: var(--red) !important; + --tab-text-color-focused-highlighted: var(--text-accent) !important; + --tab-width: 200px !important; + --table-add-button-background: transparent !important; + --table-add-button-border-color: var(--background-modifier-border) !important; + --table-add-button-border-width: var(--table-border-width) !important; + --table-background: transparent !important; + --table-border-width: 1px !important; + --table-cell-vertical-alignment: top !important; + --table-column-alt-background: var(--table-background) !important; + --table-column-first-border-width: var(--table-border-width) !important; + --table-column-last-border-width: var(--table-border-width) !important; + --table-column-max-width: none !important; + --table-column-min-width: 6ch !important; + --table-drag-handle-background: transparent !important; + --table-drag-handle-background-active: var( + --table-selection-border-color + ) !important; + --table-drag-handle-color: var(--text-faint) !important; + --table-drag-handle-color-active: var(--text-on-accent) !important; + --table-drop-indicator-half-width: 2px !important; + --table-header-background: var(--bg_dark2) !important; + --table-header-border-color: var(--table-border-color) !important; + --table-header-border-width: var(--table-border-width) !important; + --table-header-color: var(--text-normal) !important; + --table-header-size: var(--table-text-size) !important; + --table-header-weight: calc( + var(--font-weight) + var(--bold-modifier) + ) !important; + --table-line-height: var(--line-height-tight) !important; + --table-row-alt-background: var(--table-background) !important; + --table-row-alt-background-hover: var(--table-background) !important; + --table-row-background-hover: var(--table-background) !important; + --table-row-last-border-width: var(--table-border-width) !important; + --table-selection: color-mix( + in oklch, + var(--color-accent) 10%, + transparent + ) !important; + --table-selection-blend-mode: var(--highlight-mix-blend-mode) !important; + --table-selection-border-color: var(--interactive-accent) !important; + --table-selection-border-radius: 4px !important; + --table-selection-border-width: 2px !important; + --table-text-size: var(--font-text-size) !important; + --table-white-space: break-spaces !important; + --tag-background: rgba(var(--magenta_x), 0.15) !important; + --tag-background-hover: rgba(var(--cyan_x), 0.15) !important; + --tag-border-color: color-mix( + in oklch, + var(--interactive-accent) 15%, + transparent + ) !important; + --tag-border-color-hover: color-mix( + in oklch, + var(--interactive-accent) 15%, + transparent + ) !important; + --tag-border-width: 0px !important; + --tag-color: var(--magenta) !important; + --tag-color-hover: var(--cyan) !important; + --tag-corner-shape: round !important; + --tag-decoration: none !important; + --tag-decoration-hover: none !important; + --tag-padding-x: 0.65em !important; + --tag-padding-y: 0.25em !important; + --tag-radius: 2em !important; + --tag-size: var(--font-smaller) !important; + --text-accent-hover: var(--cyan) !important; + --text-error: var(--red1) !important; + --text-highlight-bg: rgba(var(--orange_x), 0.25) !important; + --text-highlight-bg-rgb: 255, 208, 0 !important; + --text-muted: var(--fg_dark) !important; + --text-on-accent: var(--bg) !important; + --text-on-accent-inverted: black !important; + --text-selection: rgba(var(--blue0_x), 0.6) !important; + --text-success: var(--color-green) !important; + --text-warning: var(--color-orange) !important; + --titlebar-background-focused: var(--background-secondary-alt) !important; + --titlebar-border-color: var(--background-modifier-border) !important; + --titlebar-border-width: 0px !important; + --titlebar-height: 30px !important; + --titlebar-text-color: var(--text-muted) !important; + --titlebar-text-color-focused: var(--text-normal) !important; + --titlebar-text-weight: var(--font-bold) !important; + --toggle-border-width: 2px !important; + --toggle-radius: 18px !important; + --toggle-s-border-width: 2px !important; + --toggle-s-thumb-height: 15px !important; + --toggle-s-thumb-width: 15px !important; + --toggle-s-width: 34px !important; + --toggle-thumb-color: var(--bg) !important; + --toggle-thumb-height: 18px !important; + --toggle-thumb-radius: 18px !important; + --toggle-thumb-width: 18px !important; + --toggle-width: 40px !important; + --touch-radius-l: var(--touch-size-l) !important; + --touch-radius-m: var(--touch-size-m) !important; + --touch-radius-s: var(--touch-size-s) !important; + --touch-radius-xl: var(--touch-size-xl) !important; + --touch-radius-xs: var(--touch-size-xs) !important; + --touch-radius-xxs: var(--touch-size-xxs) !important; + --touch-size-l: 52px !important; + --touch-size-m: 44px !important; + --touch-size-s: 40px !important; + --touch-size-xl: 60px !important; + --touch-size-xs: 30px !important; + --touch-size-xxs: 24px !important; + --traffic-lights-offset-x: var(--header-height) !important; + --traffic-lights-offset-y: var(--header-height) !important; + --vault-profile-actions-display: flex !important; + --vault-profile-color: var(--text-normal) !important; + --vault-profile-color-hover: var(--vault-profile-color) !important; + --vault-profile-display: flex !important; + --vault-profile-font-size: var(--font-ui-small) !important; + --vault-profile-font-weight: var(--font-medium) !important; + --vault-profile-order: 2 !important; + --vault-profile-radius: var(--radius-s) !important; + --viewer-container-height: 0 !important; + --workspace-background-translucent: color-mix( + in oklch, + var(--mono-0) 60%, + transparent + ) !important; + --xfa-focus-outline: auto !important; + --xfa-unfocused-field-background: url("data:image/svg+xml,%3Csvg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' style='fill:rgba(0, 54, 255, 0.13);'/%3E%3C/svg%3E") !important; + --zoom-factor: 1 !important; + --background-modifier-form-field-highlighted: var(--bg_dark) !important; + --image-radius: 0px !important; + --table-width: 88cqw !important; + --h1-color: var(--red) !important; + --h2-color: var(--yellow) !important; + --h3-color: var(--green) !important; + --h4-color: var(--cyan) !important; + --h5-color: var(--blue) !important; + --h6-color: var(--magenta) !important; + --inline-title-color: var(--h1-color) !important; + --default-font: '"JetBrains Mono", monospace, "Inter", sans-serif' !important; + --text-error-hover: var(--red) !important; + --table-header-background-hover: var(--bg_dark2) !important; + --bold-color: var(--cyan) !important; + --italic-color: var(--cyan) !important; + --interactive-success: var(--green) !important; + --green: rgb(var(--green_x)) !important; + --green_x: 158, 206, 106 !important; + --orange: rgb(var(--orange_x)) !important; + --orange_x: 255, 158, 100 !important; + --red: rgb(var(--red_x)) !important; + --red_x: 255, 117, 127 !important; + --yellow: rgb(var(--yellow_x)) !important; + --yellow_x: 224, 175, 104 !important; + --blue: rgb(var(--blue_x)) !important; + --pink: rgb(var(--pink_x)) !important; + --comment: rgb(var(--comment_x)) !important; + --cyan: rgb(var(--cyan_x)) !important; + --embed-background: var(--bg_dark) !important; + --flashing-background: rgba(var(--blue0_x), 0.3) !important; + --mermaid-loopline: var(--blue) !important; + --mermaid-note: var(--blue0) !important; + --nav-file-tag: rgba(var(--yellow_x), 0.9) !important; + --date-background-color: var(--bg_highlight) !important; + --magenta: rgb(var(--magenta_x)) !important; + --teal: rgb(var(--teal_x)) !important; + --fg: rgb(var(--fg_x)) !important; + --bg: rgb(var(--bg_x)) !important; + --mermaid-actor: var(--fg_dark) !important; + --bg_dark2: rgb(var(--bg_dark2_x)) !important; + --bg_highlight: rgb(var(--bg_highlight_x)) !important; + --bg_highlight_dark: rgb(var(--bg_highlight_dark_x)) !important; + --blue0: rgb(var(--blue0_x)) !important; + --color_blue_rgb: var(--blue_x) !important; + --color_cyan_rgb: var(--cyan_x) !important; + --color_green_rgb: var(--green_x) !important; + --color_orange_rgb: var(--orange_x) !important; + --color_pink_rgb: var(--magenta_x) !important; + --color_purple_rgb: var(--magenta_x) !important; + --color_red_rgb: var(--red_x) !important; + --color_yellow_rgb: var(--yellow_x) !important; + --fg_dark: rgb(var(--fg_dark_x)) !important; + --red1: rgb(var(--red1_x)) !important; + --unknown: #ffffff !important; + --bg_dark: rgb(var(--bg_dark_x)) !important; + --bg_dark_x: 22, 22, 30 !important; + --bg_dark2_x: 18, 18, 24 !important; + --bg_highlight_dark_x: 36, 40, 59 !important; + --bg_highlight_x: 41, 46, 66 !important; + --bg_x: 26, 27, 38 !important; + --blue_x: 122, 162, 247 !important; + --blue0_x: 61, 89, 161 !important; + --comment_x: 86, 95, 137 !important; + --cyan_x: 125, 207, 255 !important; + --date-color: var(--blue) !important; + --fg_dark_x: 169, 177, 214 !important; + --fg_x: 192, 202, 245 !important; + --magenta_x: 187, 154, 247 !important; + --pink_x: 217, 0, 105 !important; + --red1_x: 219, 75, 75 !important; + --teal_x: 26, 188, 156 !important; + --terminal_black: rgb(var(--terminal_black_x)) !important; + --terminal_black_x: 65, 72, 104 !important; + --cyan_hsl: 202 100% 75% !important; + --magent_hsl: 261 85% 79% !important; + --pink_hsl: 331 100% 43% !important; +} + +body { + --site-name-color: var(--text-accent); + --sidebar-left-background: var(--background-secondary); + --sidebar-right-background: var(--background-secondary); + --sidebar-left-border-color: var(--background-modifier-border); + --sidebar-right-border-color: var(--background-modifier-border); + --page-title-color: var(--h1-color, var(--text-normal)); + --page-title-font: var(--h1-font, var(--font-text-theme)); + --page-title-weight: var(--h1-weight, var(--font-semibold)); + --outline-heading-color: var(--text-muted); + --outline-heading-color-active: var(--text-accent); + --component-title-color: var(--text-muted); + --nav-item-color: var(--text-normal); + --nav-item-color-hover: var(--text-accent); + --nav-item-color-active: var(--text-accent); + --nav-parent-item-color: var(--text-normal); + --nav-collapse-icon-color: var(--text-muted); + --nav-collapse-icon-color-collapsed: var(--text-faint); +} +body body.theme-light .frontmatter-container { + background-color: var(--metadata-background); + color: var(--text-muted); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px 0px 32px; + margin-block-end: 32px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 8px 0px; + padding-block-end: 8px; + padding-block-start: 8px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light .metadata-container { + background-color: var(--metadata-background); + color: var(--text-muted); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px 0px 32px; + margin-block-end: 32px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 8px 0px; + padding-block-end: 8px; + padding-block-start: 8px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light .metadata-properties { + background-color: rgba(0, 0, 0, 0); + color: rgb(39, 46, 75); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light .metadata-container .metadata-property { + background-color: var(--metadata-property-background); + color: rgb(39, 46, 75); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 6px; + border-top-right-radius: 6px; + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + display: flex; +} +body body.theme-light .metadata-property-key { + color: rgb(39, 46, 75); + font-family: var(--metadata-label-font); + font-size: 16px; + font-weight: 400; +} +body body.theme-light .metadata-property-value { + color: rgb(39, 46, 75); + font-family: var(--metadata-input-font); + font-size: 16px; +} +body body.theme-light .view-content { + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-light .markdown-rendered a.external-link { + background-color: rgba(0, 0, 0, 0); + color: var(--link-external-color); + cursor: var(--cursor-link); + filter: var(--link-external-filter); + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(90, 74, 120) none 0px; + text-decoration: underline; + text-decoration-color: rgb(90, 74, 120); + text-decoration-line: var(--link-external-decoration); + text-decoration-style: solid; + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light .markdown-rendered a.internal-link { + background-color: rgba(0, 0, 0, 0); + color: var(--link-color); + cursor: var(--cursor-link); + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(90, 74, 120) none 0px; + text-decoration: underline; + text-decoration-color: rgb(90, 74, 120); + text-decoration-line: var(--link-decoration); + text-decoration-style: solid; + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light .markdown-rendered a.internal-link.is-unresolved { + background-color: rgba(0, 0, 0, 0); + color: var(--link-unresolved-color); + cursor: var(--cursor-link); + filter: var(--link-unresolved-filter); + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(90, 74, 120) none 0px; + text-decoration: underline oklch(59.8144% 0.140543 242.945deg / 0.3); + text-decoration-color: var(--link-unresolved-decoration-color); + text-decoration-line: var(--link-decoration); + text-decoration-style: var(--link-unresolved-decoration-style); + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light .markdown-rendered a.external-link:hover { + text-decoration: underline rgb(138, 92, 245); + text-decoration-color: rgb(138, 92, 245); + text-decoration-line: underline; + text-decoration-style: solid; + color: rgb(138, 92, 245); +} +body body.theme-light .markdown-rendered a.internal-link:hover { + text-decoration-color: rgb(138, 92, 245); + text-decoration-line: underline; + text-decoration-style: solid; + color: rgb(138, 92, 245); +} +body body.theme-light .backlink-pane { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + padding-top: var(--size-4-1); + padding-bottom: max(var(--safe-area-inset-bottom), var(--size-4-8)); + padding-left: 12px; + padding-right: 12px; + padding-block-end: 32px; + padding-block-start: 4px; + padding-inline-end: var(--size-4-3); + padding-inline-start: var(--size-4-3); +} +body body.theme-light .backlink-pane .tree-item { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light .backlink-pane .tree-item-self { + color: var(--nav-heading-color); +} +body body.theme-light .markdown-rendered p { + background-color: rgba(0, 0, 0, 0); + color: var(--text-muted); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(39, 46, 75) none 0px; + text-decoration: rgb(34, 34, 34); + text-decoration-color: rgb(39, 46, 75); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: none; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light strong { + background-color: rgba(0, 0, 0, 0); + color: var(--bold-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: calc(var(--font-weight) + var(--bold-modifier)); + outline: rgb(15, 75, 110) none 0px; + text-decoration: rgb(34, 34, 34); + text-decoration-color: rgb(15, 75, 110); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light b { + background-color: rgba(0, 0, 0, 0); + color: var(--bold-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: calc(var(--font-weight) + var(--bold-modifier)); + outline: rgb(15, 75, 110) none 0px; + text-decoration: rgb(34, 34, 34); + text-decoration-color: rgb(15, 75, 110); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light em { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(15, 75, 110) none 0px; + text-decoration: rgb(34, 34, 34); + text-decoration-color: rgb(15, 75, 110); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light i { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(15, 75, 110) none 0px; + text-decoration: rgb(34, 34, 34); + text-decoration-color: rgb(15, 75, 110); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light u { + background-color: rgba(0, 0, 0, 0); + color: rgb(34, 34, 34); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + text-decoration: underline rgb(34, 34, 34); + text-decoration-color: rgb(34, 34, 34); + text-decoration-line: underline; + text-decoration-style: solid; + transform: none; + user-select: none; + animation-name: none; + animation-duration: auto; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light s { + background-color: rgba(0, 0, 0, 0); + color: rgb(34, 34, 34); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + text-decoration: line-through rgb(34, 34, 34); + text-decoration-color: rgb(34, 34, 34); + text-decoration-line: line-through; + text-decoration-style: solid; + transform: none; + user-select: none; + animation-name: none; + animation-duration: auto; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light strong > em { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 600; + outline: rgb(15, 75, 110) none 0px; + text-decoration-color: rgb(15, 75, 110); + text-decoration-style: solid; + transition: all; + user-select: text; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-play-state: running; +} +body body.theme-light .markdown-rendered mark { + background-color: var(--text-highlight-bg); + color: var(--text-normal); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(52, 59, 88) none 0px; + text-decoration: rgb(0, 0, 0); + text-decoration-color: rgb(52, 59, 88); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light del { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(52, 59, 88) none 0px; + text-decoration: line-through; + text-decoration-color: rgb(52, 59, 88); + text-decoration-line: line-through; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-light .search-highlight { + background-color: rgb(255, 255, 0); + color: rgb(0, 0, 0); + border: 0px rgb(0, 0, 0); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .suggestion-item.is-selected { + background-color: rgba(0, 0, 0, 0); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + color: var(--nav-item-color-active); +} +body body.theme-light div.suggestion-item { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + color: rgb(52, 59, 88); +} +body body.theme-light .markdown-rendered hr { + border-left-width: 0px; + border-right-width: 0px; + border-top: 2px solid; + border-color: rgb(220, 222, 226); + border-bottom-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 32px 0px; + margin-block-end: 32px; + margin-block-start: 32px; + margin-inline-end: 0px; + margin-inline-start: 0px; +} +body body.theme-light div.multi-select-pill { + align-items: normal; + background-color: var(--pill-background); + color: var(--pill-color); + display: flex; + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 14px; + font-weight: var(--pill-weight); + line-height: var(--line-height-tight); + text-decoration: rgb(34, 34, 34); + margin-inline-start: 0px; + border: 0px solid oklch(59.8144% 0.140543 242.945deg / 0.15); + border-top-left-radius: 28px; + border-top-right-radius: 28px; + border-bottom-left-radius: 28px; + border-bottom-right-radius: 28px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light div.multi-select-pill > div.multi-select-pill-content { + color: rgb(90, 74, 120); +} +body body.theme-light .site-body-left-column input.search-bar { + background-color: rgb(203, 204, 209); + border: 2px solid rgb(220, 222, 226); + border-top-left-radius: 5px; + border-top-right-radius: 5px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body body.theme-light .search-results { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-light .search-results > * { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(52, 59, 88) none 0px; + text-decoration-color: rgb(52, 59, 88); + text-decoration-style: solid; + transition: all; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-play-state: running; +} +body body.theme-light div.search-results { + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-light .search-results .suggestion-item { + color: rgb(52, 59, 88); +} +body body.theme-light div.search-results .suggestion-item { + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-light .search-results .suggestion-item.is-selected { + color: var(--nav-item-color-active); + font-weight: var(--nav-item-weight); + background-color: rgba(0, 0, 0, 0); +} +body body.theme-light div.search-results .suggestion-item.is-selected { + color: var(--nav-item-color-active); +} +body body.theme-light .published-container .markdown-rendered h1 { + color: rgb(34, 34, 34); + font-family: var(--h1-font); + font-size: var(--h1-size); + font-weight: var(--font-weight); + line-height: var(--h1-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h1-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-light .published-container .markdown-rendered h2 { + color: rgb(34, 34, 34); + font-family: var(--h2-font); + font-size: var(--h2-size); + font-weight: var(--font-weight); + line-height: var(--h2-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h2-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-light .published-container .markdown-rendered h3 { + color: rgb(34, 34, 34); + font-family: var(--h3-font); + font-size: var(--h3-size); + font-weight: var(--font-weight); + line-height: var(--h3-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h3-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-light .published-container .markdown-rendered h4 { + color: rgb(34, 34, 34); + font-family: var(--h4-font); + font-size: var(--h4-size); + font-weight: var(--font-weight); + line-height: var(--h4-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h4-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-light .published-container .markdown-rendered h5 { + color: rgb(34, 34, 34); + font-family: var(--h5-font); + font-size: var(--h5-size); + font-weight: var(--font-weight); + line-height: var(--h5-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h5-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-light .published-container .markdown-rendered h6 { + color: rgb(34, 34, 34); + font-family: var(--h6-font); + font-size: var(--h6-size); + font-weight: var(--font-weight); + line-height: var(--h6-line-height); + text-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: var(--h6-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-light .markdown-rendered ul > li { + color: rgb(52, 59, 88); + text-align: start; + padding-top: var(--list-spacing); + padding-bottom: var(--list-spacing); + padding-left: 0px; + padding-right: 0px; + padding-block-end: 1.2px; + padding-block-start: 1.2px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin-top: 0px; + margin-bottom: 0px; + margin-right: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; +} +body body.theme-light .markdown-rendered ul > li::marker { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(34, 34, 34); + pointer-events: auto; + transform: none; +} +body body.theme-light .markdown-rendered ol > li { + color: rgb(52, 59, 88); + text-align: start; + padding-top: var(--list-spacing); + padding-bottom: var(--list-spacing); + padding-left: 0px; + padding-right: 0px; + padding-block-end: 1.2px; + padding-block-start: 1.2px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin-top: 0px; + margin-bottom: 0px; + margin-right: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; +} +body body.theme-light .markdown-rendered ol > li::marker { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(34, 34, 34); + pointer-events: auto; + transform: none; +} +body body.theme-light dl { + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + list-style: outside none disc; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light dt { + color: rgb(52, 59, 88); + font-weight: 400; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + font-size: 16px; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light dd { + color: rgb(52, 59, 88); + font-size: 16px; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + margin: 0px 0px 0px 40px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 40px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .markdown-rendered code { + background-color: var(--code-background); + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: var(--code-normal); + font-family: var(--font-monospace); + padding: 2.1px 4.2px; + padding-block-end: 2.1px; + padding-block-start: 2.1px; + padding-inline-end: 4.2px; + padding-inline-start: 4.2px; +} +body body.theme-light .markdown-rendered pre > code { + background-color: var(--code-background); + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(52, 59, 88); + overflow-x: visible; + padding: 12px 16px; + padding-block-end: 12px; + padding-block-start: 12px; + padding-inline-end: 16px; + padding-inline-start: 16px; + white-space-collapse: preserve; + text-wrap-mode: nowrap; +} +body body.theme-light figure[data-rehype-pretty-code-figure] { + background-color: var(--code-background); + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body + body.theme-light + figure[data-rehype-pretty-code-figure] + > [data-rehype-pretty-code-title] { + background-color: var(--code-background); + color: rgb(52, 59, 88); + font-family: monospace; + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light pre > code [data-line] { + background-color: var(--code-background); + border-left: 0px solid rgb(220, 222, 226); +} +body body.theme-light pre > code [data-highlighted-line] { + background-color: var(--code-background); + border-left-color: rgb(220, 222, 226); +} +body body.theme-light pre > code [data-highlighted-chars] { + background-color: var(--code-background); + border: 0px solid rgb(220, 222, 226); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body + body.theme-light + ul.contains-task-list + > li.task-list-item + > .task-list-item-checkbox { + appearance: auto; + border: 1px solid rgb(150, 153, 163); + border-top-left-radius: 12px; + border-top-right-radius: 12px; + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px 8px 0px -24px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 8px; + margin-inline-start: calc(var(--checkbox-size) * -1.5); + width: var(--checkbox-size); + transition: box-shadow 0.15s ease-in-out; + position: relative; + top: auto; +} +body body.theme-light ul.contains-task-list > li.task-list-item { + list-style: outside none none; + text-align: start; + display: list-item; +} +body + body.theme-light + ul.contains-task-list + > li.task-list-item + > input[type="checkbox"]:checked { + content: normal; + top: auto; + inset-inline-start: auto; + position: static; + width: auto; + display: list-item; + background-color: rgba(0, 0, 0, 0); +} +body body.theme-light li.task-list-item[data-task="-"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task=">"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="/"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="?"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="!"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="*"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="l"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="b"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="i"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="S"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="I"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="p"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="c"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="f"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="k"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="u"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="d"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light li.task-list-item[data-task="w"] { + color: rgb(52, 59, 88); + text-decoration: none; + text-decoration-color: rgb(52, 59, 88); +} +body body.theme-light .markdown-rendered blockquote { + background-color: var(--blockquote-background-color); + border-inline-start: 2px solid rgb(15, 135, 204); + color: var(--blockquote-color); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + font-style: var(--blockquote-font-style); + line-height: 24px; + padding-bottom: 0px; + padding-top: 0px; + padding-inline-start: var(--size-4-6); + margin-inline-start: 0px; + margin-inline-end: 0px; + text-decoration: rgb(34, 34, 34); + letter-spacing: normal; +} +body body.theme-light .footnote-backref { + color: var(--text-faint); + text-decoration: underline rgb(138, 92, 245); +} +body body.theme-light progress { + accent-color: auto; + background-color: rgba(0, 0, 0, 0); + height: 6px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light input[type="range"] { + accent-color: auto; + background-color: rgb(255, 255, 255); + border: 2px inset rgb(118, 118, 118); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light input[type="text"] { + background-color: rgba(0, 0, 0, 0); + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(39, 46, 75); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; +} +body body.theme-light details { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light summary { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + cursor: auto; + font-weight: 400; + list-style: inside none disclosure-closed; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light details[open] { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(34, 34, 34); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light kbd { + background-color: var(--code-background); + box-shadow: none; + color: var(--code-normal); + font-family: var(--font-monospace); + font-size: var(--code-size); + border: 0px rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 4px; + border-start-end-radius: 4px; + border-end-start-radius: 4px; + border-end-end-radius: 4px; + padding: 1.4px 3.5px; + padding-block-end: 1.4px; + padding-block-start: 1.4px; + padding-inline-end: 3.5px; + padding-inline-start: 3.5px; +} +body body.theme-light sub { + color: rgb(52, 59, 88); + font-size: 13.3333px; + vertical-align: sub; +} +body body.theme-light sup { + color: rgb(52, 59, 88); + font-size: 13.3333px; + vertical-align: super; +} +body body.theme-light abbr { + color: rgb(52, 59, 88); + cursor: auto; + text-decoration: underline dotted; + text-decoration-style: dotted; +} +body body.theme-light .math-block > mjx-container.MathJax { + display: block; + text-align: center; + white-space-collapse: collapse; + text-wrap-mode: wrap; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body body.theme-light div.math-block > mjx-container.MathJax { + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body body.theme-light .math-inline > mjx-container.MathJax > mjx-math { + font-family: MJXZERO, MJXTEX; +} +body body.theme-light .page-header .page-title { + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 13px; + font-weight: 400; + line-height: 16.9px; + background-color: rgba(0, 0, 0, 0); + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-light .math-block { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-light .footnotes { + background-color: rgba(0, 0, 0, 0); + border-top-color: rgb(52, 59, 88); + border-top-width: 0px; + color: rgb(52, 59, 88); +} +body body.theme-light pre:has(> code.mermaid) { + background-color: var(--code-background); + border: 0px solid rgb(220, 222, 226); +} +body body.theme-light .tag { + background-color: var(--pill-background); + color: var(--pill-color); + border: 0px solid oklch(59.8144% 0.140543 242.945deg / 0.15); + border-top-left-radius: 28px; + border-top-right-radius: 28px; + border-bottom-left-radius: 28px; + border-bottom-right-radius: 28px; +} +body body.theme-light ::-webkit-scrollbar { + background-color: rgb(255, 255, 255); +} +body body.theme-light ::-webkit-scrollbar-thumb { + background-color: rgb(255, 255, 255); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + border: 0px rgb(34, 34, 34); + box-shadow: none; +} +body body.theme-light ::-webkit-scrollbar-thumb:hover { + background-color: rgb(255, 255, 255); +} +body body.theme-light ::-webkit-scrollbar-thumb:active { + background-color: rgb(255, 255, 255); +} +body body.theme-light ::-webkit-scrollbar-track { + background-color: rgb(255, 255, 255); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light ::-webkit-scrollbar-corner { + background-color: rgb(255, 255, 255); +} +body body.theme-light body { + scrollbar-width: var(--scrollbar-native-width); + scrollbar-color: auto; +} +body body.theme-light .callout[data-callout="note"] { + --callout-color: var(--callout-default); + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + mix-blend-mode: normal; + padding: 12px 12px 12px 24px; + padding-block-end: 12px; + padding-block-start: 12px; + padding-inline-end: 12px; + padding-inline-start: 24px; + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); +} +body body.theme-light .callout[data-callout="note"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout > .callout-title > .callout-title-inner { + color: var(--callout-title-color); + font-weight: var(--font-weight); +} +body body.theme-light .callout > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light .callout[data-callout="abstract"] { + --callout-color: var(--callout-summary); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="abstract"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout[data-callout="info"] { + --callout-color: var(--callout-info); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="info"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout[data-callout="todo"] { + --callout-color: var(--callout-todo); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="todo"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout[data-callout="tip"] { + --callout-color: var(--callout-tip); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="tip"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout[data-callout="success"] { + --callout-color: var(--callout-success); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="success"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout[data-callout="question"] { + --callout-color: var(--callout-question); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="question"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout[data-callout="warning"] { + --callout-color: var(--callout-warning); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="warning"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout[data-callout="danger"] { + --callout-color: var(--callout-error); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="danger"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout[data-callout="failure"] { + --callout-color: var(--callout-fail); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="failure"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout[data-callout="bug"] { + --callout-color: var(--callout-bug); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="bug"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout[data-callout="example"] { + --callout-color: var(--callout-example); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="example"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .callout[data-callout="quote"] { + --callout-color: var(--callout-quote); + background-color: rgba(var(--bg_highlight_dark_x), 0.5); + background-image: none; + background: rgba(195, 197, 201, 0.5) none repeat scroll 0% 0% / auto + padding-box border-box; + color: rgb(52, 59, 88); + mix-blend-mode: normal; + border: 0px solid rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .callout[data-callout="quote"] > .callout-title { + --callout-color: 52, 84, 138; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-light .markdown-rendered table { + background-color: rgba(0, 0, 0, 0); + border-collapse: separate; + color: rgb(52, 59, 88); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + table-layout: auto; + text-align: start; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light .markdown-rendered thead { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .markdown-rendered tbody { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body body.theme-light .markdown-rendered th { + background-color: rgba(0, 0, 0, 0); + color: var(--table-header-color); + font-weight: var(--table-header-weight); + text-align: start; + vertical-align: var(--table-cell-vertical-alignment); + box-shadow: none; + text-decoration: rgb(34, 34, 34); + letter-spacing: normal; + border-left: var(--table-column-first-border-width) solid rgb(220, 222, 226); + border-right: 1px solid rgb(220, 222, 226); + border-top: var(--table-header-border-width) solid rgb(220, 222, 226); + border-bottom: 1px solid rgb(220, 222, 226); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; +} +body body.theme-light .markdown-rendered td { + background-color: rgba(0, 0, 0, 0); + color: var(--table-text-color); + font-weight: 400; + text-align: start; + vertical-align: var(--table-cell-vertical-alignment); + box-shadow: none; + text-decoration: rgb(34, 34, 34); + border: 1px solid rgb(220, 222, 226); + border-left: var(--table-column-first-border-width) solid rgb(220, 222, 226); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; +} +body body.theme-light .markdown-rendered tr { + background-color: var(--table-header-background); + color: rgb(52, 59, 88); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .markdown-rendered tbody tr:nth-child(even) { + background-color: var(--table-background); +} +body body.theme-light .markdown-rendered tbody tr:nth-child(odd) { + background-color: var(--table-row-alt-background); +} +body body.theme-light .table-wrapper { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-light .markdown-rendered img { + border-radius: 0px; + box-shadow: none; + filter: none; + max-width: 100%; + object-fit: fill; + border: 0px rgb(140, 67, 81); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; +} +body body.theme-light .markdown-rendered figure { + background-color: rgba(0, 0, 0, 0); + text-align: start; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light .markdown-rendered figcaption { + color: rgb(52, 59, 88); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 16px; + font-style: normal; + text-align: start; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light .markdown-rendered video { + border-radius: 0px; + box-shadow: none; + filter: none; + max-width: 100%; + object-fit: contain; + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; +} +body body.theme-light .markdown-rendered audio { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light .internal-embed { + background-color: var(--embed-background); + color: rgb(52, 59, 88); + border-radius: 0px; + border-color: rgb(52, 59, 88); + border-left: 2px solid rgb(15, 135, 204); + border-right-width: 0px; + border-top-width: 0px; + border-bottom-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light .markdown-embed { + background-color: var(--embed-background); + color: rgb(52, 59, 88); + border-radius: 0px; + border-left: solid; + border-width: 0px; + border-color: rgb(52, 59, 88); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-light .file-embed { + background-color: var(--background-primary-alt); + color: var(--text-muted); + border-radius: 8px; + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 8px; + border-top-right-radius: 8px; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 8px; + padding-block-end: 8px; + padding-block-start: 8px; + padding-inline-end: 8px; + padding-inline-start: 8px; +} +body body.theme-light .internal-embed .markdown-embed { + padding-left: 0px; + color: rgb(52, 59, 88); +} +body body.theme-light .nav-view-outer .tree-item-self a { + color: rgb(39, 46, 75); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; +} +body body.theme-light .nav-view-outer .tree-item-self.mod-active { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} +body + body.theme-light + .nav-view-outer + .nav-view + > .tree-item.is-collapsed + > .tree-item-children + > .tree-item + > .tree-item-self { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--nav-item-weight); +} +body + body.theme-light + .nav-view-outer + .nav-view + > .tree-item + > .tree-item-children + > .tree-item + > .tree-item-self { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--nav-item-weight); +} +body body.theme-light .graph-view-container { + background-color: var(--background-secondary); + color: rgb(52, 59, 88); + border: 2px solid rgba(0, 0, 0, 0); + border-top-left-radius: 8px; + border-top-right-radius: 8px; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} +body body.theme-light .clickable-icon { + background-color: rgba(0, 0, 0, 0); + color: var(--icon-color); + cursor: var(--cursor); + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} +body body.theme-light h1 { + color: var(--h1-color); + font-family: var(--h1-font); + font-weight: var(--font-weight); + text-decoration: rgb(34, 34, 34); + text-transform: none; + border: 0px rgb(140, 67, 81); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light h2 { + color: var(--h2-color); + font-family: var(--h2-font); + font-weight: var(--font-weight); + text-decoration: rgb(34, 34, 34); + text-transform: none; + border: 0px rgb(143, 94, 21); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light h3 { + color: var(--h3-color); + font-family: var(--h3-font); + font-weight: var(--font-weight); + text-decoration: rgb(34, 34, 34); + text-transform: none; + border: 0px rgb(51, 99, 92); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light h4 { + color: var(--h4-color); + font-family: var(--h4-font); + font-weight: var(--font-weight); + text-decoration: rgb(34, 34, 34); + text-transform: none; + border: 0px rgb(15, 75, 110); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light h5 { + color: var(--h5-color); + font-family: var(--h5-font); + font-weight: var(--font-weight); + text-decoration: rgb(34, 34, 34); + text-transform: none; + border: 0px rgb(52, 84, 138); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light h6 { + color: var(--h6-color); + font-family: var(--h6-font); + font-weight: var(--font-weight); + text-decoration: rgb(34, 34, 34); + text-transform: none; + border: 0px rgb(90, 74, 120); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-light .site-footer { + background-color: var(--status-bar-background); + color: var(--status-bar-text-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: var(--status-bar-font-size); + text-align: start; + padding-top: 4px; + padding-bottom: 4px; + padding-left: 4px; + padding-right: var(--size-4-2); + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 4px; +} +body body.theme-light .site-footer a { + color: rgb(39, 46, 75); + font-size: 12px; + font-weight: 400; +} +body body.theme-light .nav-header { + color: rgb(52, 59, 88); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; +} +body body.theme-light .nav-files-container .tree-item { + background-color: rgba(0, 0, 0, 0); + color: rgb(52, 59, 88); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-light .nav-file-title { + color: var(--nav-item-color); +} +body body.theme-light .nav-file-title-content { + color: rgb(39, 46, 75); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body body.theme-light .nav-files-container { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(52, 59, 88); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-light .site-body-left-column-site-theme-toggle { + background-color: rgba(0, 0, 0, 0); + color: var(--icon-color); + cursor: var(--cursor); + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} +body body.theme-light .site-body-left-column-site-theme-toggle svg { + stroke: rgb(39, 46, 75); + color: rgb(39, 46, 75); +} +body body.theme-light .view-header-breadcrumb { + background-color: rgba(0, 0, 0, 0); + color: rgb(39, 46, 75); + border-color: rgb(39, 46, 75); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} +body body.theme-light .view-header-breadcrumb-separator { + color: var(--text-faint); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body body.theme-dark .frontmatter-container { + background-color: var(--metadata-background); + color: var(--text-muted); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px 0px 32px; + margin-block-end: 32px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 8px 0px; + padding-block-end: 8px; + padding-block-start: 8px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark .metadata-container { + background-color: var(--metadata-background); + color: var(--text-muted); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px 0px 32px; + margin-block-end: 32px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 8px 0px; + padding-block-end: 8px; + padding-block-start: 8px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark .metadata-properties { + background-color: rgba(0, 0, 0, 0); + color: rgb(169, 177, 214); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark .metadata-container .metadata-property { + background-color: var(--metadata-property-background); + color: rgb(169, 177, 214); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 6px; + border-top-right-radius: 6px; + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + display: flex; +} +body body.theme-dark .metadata-property-key { + color: rgb(169, 177, 214); + font-family: var(--metadata-label-font); + font-size: 16px; + font-weight: 400; +} +body body.theme-dark .metadata-property-value { + color: rgb(169, 177, 214); + font-family: var(--metadata-input-font); + font-size: 16px; +} +body body.theme-dark .view-content { + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-dark .markdown-rendered a.external-link { + background-color: rgba(0, 0, 0, 0); + color: var(--link-external-color); + cursor: var(--cursor-link); + filter: var(--link-external-filter); + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(187, 154, 247) none 0px; + text-decoration: underline; + text-decoration-color: rgb(187, 154, 247); + text-decoration-line: var(--link-external-decoration); + text-decoration-style: solid; + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark .markdown-rendered a.internal-link { + background-color: rgba(0, 0, 0, 0); + color: var(--link-color); + cursor: var(--cursor-link); + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(187, 154, 247) none 0px; + text-decoration: underline; + text-decoration-color: rgb(187, 154, 247); + text-decoration-line: var(--link-decoration); + text-decoration-style: solid; + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark .markdown-rendered a.internal-link.is-unresolved { + background-color: rgba(0, 0, 0, 0); + color: var(--link-unresolved-color); + cursor: var(--cursor-link); + filter: var(--link-unresolved-filter); + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--link-weight); + outline: rgb(187, 154, 247) none 0px; + text-decoration: underline oklch(82.3902% 0.103065 235.337deg / 0.3); + text-decoration-color: var(--link-unresolved-decoration-color); + text-decoration-line: var(--link-decoration); + text-decoration-style: var(--link-unresolved-decoration-style); + text-decoration-thickness: var(--link-decoration-thickness); + transition: opacity 0.14s ease-in-out; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark .markdown-rendered a.external-link:hover { + text-decoration: underline rgb(166, 138, 249); + text-decoration-color: rgb(166, 138, 249); + text-decoration-line: underline; + text-decoration-style: solid; + color: rgb(166, 138, 249); +} +body body.theme-dark .markdown-rendered a.internal-link:hover { + text-decoration-color: rgb(166, 138, 249); + text-decoration-line: underline; + text-decoration-style: solid; + color: rgb(166, 138, 249); +} +body body.theme-dark .backlink-pane { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + padding-top: var(--size-4-1); + padding-bottom: max(var(--safe-area-inset-bottom), var(--size-4-8)); + padding-left: 12px; + padding-right: 12px; + padding-block-end: 32px; + padding-block-start: 4px; + padding-inline-end: var(--size-4-3); + padding-inline-start: var(--size-4-3); +} +body body.theme-dark .backlink-pane .tree-item { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark .backlink-pane .tree-item-self { + color: var(--nav-heading-color); +} +body body.theme-dark .markdown-rendered p { + background-color: rgba(0, 0, 0, 0); + color: var(--text-muted); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(169, 177, 214) none 0px; + text-decoration: rgb(218, 218, 218); + text-decoration-color: rgb(169, 177, 214); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: none; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark strong { + background-color: rgba(0, 0, 0, 0); + color: var(--bold-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: calc(var(--font-weight) + var(--bold-modifier)); + outline: rgb(125, 207, 255) none 0px; + text-decoration: rgb(218, 218, 218); + text-decoration-color: rgb(125, 207, 255); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark b { + background-color: rgba(0, 0, 0, 0); + color: var(--bold-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: calc(var(--font-weight) + var(--bold-modifier)); + outline: rgb(125, 207, 255) none 0px; + text-decoration: rgb(218, 218, 218); + text-decoration-color: rgb(125, 207, 255); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark em { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(125, 207, 255) none 0px; + text-decoration: rgb(218, 218, 218); + text-decoration-color: rgb(125, 207, 255); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark i { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(125, 207, 255) none 0px; + text-decoration: rgb(218, 218, 218); + text-decoration-color: rgb(125, 207, 255); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark u { + background-color: rgba(0, 0, 0, 0); + color: rgb(218, 218, 218); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + text-decoration: underline rgb(218, 218, 218); + text-decoration-color: rgb(218, 218, 218); + text-decoration-line: underline; + text-decoration-style: solid; + transform: none; + user-select: none; + animation-name: none; + animation-duration: auto; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark s { + background-color: rgba(0, 0, 0, 0); + color: rgb(218, 218, 218); + cursor: auto; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + text-decoration: line-through rgb(218, 218, 218); + text-decoration-color: rgb(218, 218, 218); + text-decoration-line: line-through; + text-decoration-style: solid; + transform: none; + user-select: none; + animation-name: none; + animation-duration: auto; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark strong > em { + background-color: rgba(0, 0, 0, 0); + color: var(--italic-color); + cursor: grab; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 600; + outline: rgb(125, 207, 255) none 0px; + text-decoration-color: rgb(125, 207, 255); + text-decoration-style: solid; + transition: all; + user-select: text; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-play-state: running; +} +body body.theme-dark .markdown-rendered mark { + background-color: var(--text-highlight-bg); + color: var(--text-normal); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(192, 202, 245) none 0px; + text-decoration: rgb(0, 0, 0); + text-decoration-color: rgb(192, 202, 245); + text-decoration-line: none; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark del { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + cursor: grab; + filter: none; + backdrop-filter: none; + box-shadow: none; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(192, 202, 245) none 0px; + text-decoration: line-through; + text-decoration-color: rgb(192, 202, 245); + text-decoration-line: line-through; + text-decoration-style: solid; + transition: all; + transform: none; + user-select: text; + animation-name: none; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-direction: normal; + animation-fill-mode: none; + animation-play-state: running; +} +body body.theme-dark .search-highlight { + background-color: rgb(255, 255, 0); + color: rgb(0, 0, 0); + border: 0px rgb(0, 0, 0); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .suggestion-item.is-selected { + background-color: rgba(0, 0, 0, 0); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + color: var(--nav-item-color-active); +} +body body.theme-dark div.suggestion-item { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + color: rgb(192, 202, 245); +} +body body.theme-dark .markdown-rendered hr { + border-left-width: 0px; + border-right-width: 0px; + border-top: 2px solid; + border-color: rgb(41, 46, 66); + border-bottom-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 32px 0px; + margin-block-end: 32px; + margin-block-start: 32px; + margin-inline-end: 0px; + margin-inline-start: 0px; +} +body body.theme-dark div.multi-select-pill { + align-items: normal; + background-color: var(--pill-background); + color: var(--pill-color); + display: flex; + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 14px; + font-weight: var(--pill-weight); + line-height: var(--line-height-tight); + text-decoration: rgb(218, 218, 218); + margin-inline-start: 0px; + border: 0px solid oklch(82.3902% 0.103065 235.337deg / 0.15); + border-top-left-radius: 28px; + border-top-right-radius: 28px; + border-bottom-left-radius: 28px; + border-bottom-right-radius: 28px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark div.multi-select-pill > div.multi-select-pill-content { + color: rgb(187, 154, 247); +} +body body.theme-dark .site-body-left-column input.search-bar { + background-color: rgb(22, 22, 30); + border: 2px solid rgb(41, 46, 66); + border-top-left-radius: 5px; + border-top-right-radius: 5px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body body.theme-dark .search-results { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-dark .search-results > * { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + outline: rgb(192, 202, 245) none 0px; + text-decoration-color: rgb(192, 202, 245); + text-decoration-style: solid; + transition: all; + animation-duration: 0s; + animation-timing-function: ease; + animation-delay: 0s; + animation-iteration-count: 1; + animation-play-state: running; +} +body body.theme-dark div.search-results { + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-dark .search-results .suggestion-item { + color: rgb(192, 202, 245); +} +body body.theme-dark div.search-results .suggestion-item { + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-dark .search-results .suggestion-item.is-selected { + color: var(--nav-item-color-active); + font-weight: var(--nav-item-weight); + background-color: rgba(0, 0, 0, 0); +} +body body.theme-dark div.search-results .suggestion-item.is-selected { + color: var(--nav-item-color-active); +} +body body.theme-dark .published-container .markdown-rendered h1 { + color: rgb(218, 218, 218); + font-family: var(--h1-font); + font-size: var(--h1-size); + font-weight: var(--font-weight); + line-height: var(--h1-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h1-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-dark .published-container .markdown-rendered h2 { + color: rgb(218, 218, 218); + font-family: var(--h2-font); + font-size: var(--h2-size); + font-weight: var(--font-weight); + line-height: var(--h2-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h2-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-dark .published-container .markdown-rendered h3 { + color: rgb(218, 218, 218); + font-family: var(--h3-font); + font-size: var(--h3-size); + font-weight: var(--font-weight); + line-height: var(--h3-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h3-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-dark .published-container .markdown-rendered h4 { + color: rgb(218, 218, 218); + font-family: var(--h4-font); + font-size: var(--h4-size); + font-weight: var(--font-weight); + line-height: var(--h4-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h4-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-dark .published-container .markdown-rendered h5 { + color: rgb(218, 218, 218); + font-family: var(--h5-font); + font-size: var(--h5-size); + font-weight: var(--font-weight); + line-height: var(--h5-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h5-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-dark .published-container .markdown-rendered h6 { + color: rgb(218, 218, 218); + font-family: var(--h6-font); + font-size: var(--h6-size); + font-weight: var(--font-weight); + line-height: var(--h6-line-height); + text-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: var(--h6-letter-spacing); + background-color: rgba(0, 0, 0, 0); + background-image: none; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + width: auto; + height: auto; + content: normal; + display: block; +} +body body.theme-dark .markdown-rendered ul > li { + color: rgb(192, 202, 245); + text-align: start; + padding-top: var(--list-spacing); + padding-bottom: var(--list-spacing); + padding-left: 0px; + padding-right: 0px; + padding-block-end: 1.2px; + padding-block-start: 1.2px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin-top: 0px; + margin-bottom: 0px; + margin-right: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; +} +body body.theme-dark .markdown-rendered ul > li::marker { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(218, 218, 218); + pointer-events: auto; + transform: none; +} +body body.theme-dark .markdown-rendered ol > li { + color: rgb(192, 202, 245); + text-align: start; + padding-top: var(--list-spacing); + padding-bottom: var(--list-spacing); + padding-left: 0px; + padding-right: 0px; + padding-block-end: 1.2px; + padding-block-start: 1.2px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin-top: 0px; + margin-bottom: 0px; + margin-right: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; +} +body body.theme-dark .markdown-rendered ol > li::marker { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(218, 218, 218); + pointer-events: auto; + transform: none; +} +body body.theme-dark dl { + margin: 16px 0px; + margin-block-end: 16px; + margin-block-start: 16px; + margin-inline-end: 0px; + margin-inline-start: 0px; + list-style: outside none disc; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark dt { + color: rgb(192, 202, 245); + font-weight: 400; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + font-size: 16px; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark dd { + color: rgb(192, 202, 245); + font-size: 16px; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + margin: 0px 0px 0px 40px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 40px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .markdown-rendered code { + background-color: var(--code-background); + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: var(--code-normal); + font-family: var(--font-monospace); + padding: 2.1px 4.2px; + padding-block-end: 2.1px; + padding-block-start: 2.1px; + padding-inline-end: 4.2px; + padding-inline-start: 4.2px; +} +body body.theme-dark .markdown-rendered pre > code { + background-color: var(--code-background); + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + color: rgb(192, 202, 245); + overflow-x: visible; + padding: 12px 16px; + padding-block-end: 12px; + padding-block-start: 12px; + padding-inline-end: 16px; + padding-inline-start: 16px; + white-space-collapse: preserve; + text-wrap-mode: nowrap; +} +body body.theme-dark figure[data-rehype-pretty-code-figure] { + background-color: var(--code-background); + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body + body.theme-dark + figure[data-rehype-pretty-code-figure] + > [data-rehype-pretty-code-title] { + background-color: var(--code-background); + color: rgb(192, 202, 245); + font-family: monospace; + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark pre > code [data-line] { + background-color: var(--code-background); + border-left: 0px solid rgb(41, 46, 66); +} +body body.theme-dark pre > code [data-highlighted-line] { + background-color: var(--code-background); + border-left-color: rgb(41, 46, 66); +} +body body.theme-dark pre > code [data-highlighted-chars] { + background-color: var(--code-background); + border: 0px solid rgb(41, 46, 66); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body + body.theme-dark + ul.contains-task-list + > li.task-list-item + > .task-list-item-checkbox { + appearance: auto; + border: 1px solid rgb(86, 95, 137); + border-top-left-radius: 12px; + border-top-right-radius: 12px; + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px 8px 0px -24px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 8px; + margin-inline-start: calc(var(--checkbox-size) * -1.5); + width: var(--checkbox-size); + transition: box-shadow 0.15s ease-in-out; + position: relative; + top: auto; +} +body body.theme-dark ul.contains-task-list > li.task-list-item { + list-style: outside none none; + text-align: start; + display: list-item; +} +body + body.theme-dark + ul.contains-task-list + > li.task-list-item + > input[type="checkbox"]:checked { + content: normal; + top: auto; + inset-inline-start: auto; + position: static; + width: auto; + display: list-item; + background-color: rgba(0, 0, 0, 0); +} +body body.theme-dark li.task-list-item[data-task="-"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task=">"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="/"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="?"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="!"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="*"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="l"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="b"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="i"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="S"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="I"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="p"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="c"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="f"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="k"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="u"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="d"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark li.task-list-item[data-task="w"] { + color: rgb(192, 202, 245); + text-decoration: none; + text-decoration-color: rgb(192, 202, 245); +} +body body.theme-dark .markdown-rendered blockquote { + background-color: var(--blockquote-background-color); + border-inline-start: 2px solid rgb(128, 208, 255); + color: var(--blockquote-color); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; + font-style: var(--blockquote-font-style); + line-height: 24px; + padding-bottom: 0px; + padding-top: 0px; + padding-inline-start: var(--size-4-6); + margin-inline-start: 0px; + margin-inline-end: 0px; + text-decoration: rgb(218, 218, 218); + letter-spacing: normal; +} +body body.theme-dark .footnote-backref { + color: var(--text-faint); + text-decoration: underline rgb(166, 138, 249); +} +body body.theme-dark progress { + accent-color: auto; + background-color: rgba(0, 0, 0, 0); + height: 6px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark input[type="range"] { + accent-color: auto; + background-color: rgb(59, 59, 59); + border: 2px inset rgb(133, 133, 133); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark input[type="text"] { + background-color: rgba(0, 0, 0, 0); + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px solid rgb(169, 177, 214); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; +} +body body.theme-dark details { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark summary { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + cursor: auto; + font-weight: 400; + list-style: inside none disclosure-closed; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark details[open] { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(218, 218, 218); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark kbd { + background-color: var(--code-background); + box-shadow: none; + color: var(--code-normal); + font-family: var(--font-monospace); + font-size: var(--code-size); + border: 0px rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 4px; + border-start-end-radius: 4px; + border-end-start-radius: 4px; + border-end-end-radius: 4px; + padding: 1.4px 3.5px; + padding-block-end: 1.4px; + padding-block-start: 1.4px; + padding-inline-end: 3.5px; + padding-inline-start: 3.5px; +} +body body.theme-dark sub { + color: rgb(192, 202, 245); + font-size: 13.3333px; + vertical-align: sub; +} +body body.theme-dark sup { + color: rgb(192, 202, 245); + font-size: 13.3333px; + vertical-align: super; +} +body body.theme-dark abbr { + color: rgb(192, 202, 245); + cursor: auto; + text-decoration: underline dotted; + text-decoration-style: dotted; +} +body body.theme-dark .math-block > mjx-container.MathJax { + display: block; + text-align: center; + white-space-collapse: collapse; + text-wrap-mode: wrap; + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body body.theme-dark div.math-block > mjx-container.MathJax { + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body body.theme-dark .math-inline > mjx-container.MathJax > mjx-math { + font-family: MJXZERO, MJXTEX; +} +body body.theme-dark .page-header .page-title { + color: var(--text-normal); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 13px; + font-weight: 400; + line-height: 16.9px; + background-color: rgba(0, 0, 0, 0); + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-dark .math-block { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-dark .footnotes { + background-color: rgba(0, 0, 0, 0); + border-top-color: rgb(192, 202, 245); + border-top-width: 0px; + color: rgb(192, 202, 245); +} +body body.theme-dark pre:has(> code.mermaid) { + background-color: var(--code-background); + border: 0px solid rgb(41, 46, 66); +} +body body.theme-dark .tag { + background-color: var(--pill-background); + color: var(--pill-color); + border: 0px solid oklch(82.3902% 0.103065 235.337deg / 0.15); + border-top-left-radius: 28px; + border-top-right-radius: 28px; + border-bottom-left-radius: 28px; + border-bottom-right-radius: 28px; +} +body body.theme-dark ::-webkit-scrollbar { + background-color: rgb(30, 30, 30); +} +body body.theme-dark ::-webkit-scrollbar-thumb { + background-color: rgb(30, 30, 30); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + border: 0px rgb(218, 218, 218); + box-shadow: none; +} +body body.theme-dark ::-webkit-scrollbar-thumb:hover { + background-color: rgb(30, 30, 30); +} +body body.theme-dark ::-webkit-scrollbar-thumb:active { + background-color: rgb(30, 30, 30); +} +body body.theme-dark ::-webkit-scrollbar-track { + background-color: rgb(30, 30, 30); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark ::-webkit-scrollbar-corner { + background-color: rgb(30, 30, 30); +} +body body.theme-dark body { + scrollbar-width: var(--scrollbar-native-width); + scrollbar-color: auto; +} +body body.theme-dark .callout[data-callout="note"] { + --callout-color: var(--callout-default); + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + mix-blend-mode: normal; + padding: 12px 12px 12px 24px; + padding-block-end: 12px; + padding-block-start: 12px; + padding-inline-end: 12px; + padding-inline-start: 24px; + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); +} +body body.theme-dark .callout[data-callout="note"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout > .callout-title > .callout-title-inner { + color: var(--callout-title-color); + font-weight: var(--font-weight); +} +body body.theme-dark .callout > .callout-content { + background-color: var(--callout-content-background); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark .callout[data-callout="abstract"] { + --callout-color: var(--callout-summary); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="abstract"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout[data-callout="info"] { + --callout-color: var(--callout-info); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="info"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout[data-callout="todo"] { + --callout-color: var(--callout-todo); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="todo"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout[data-callout="tip"] { + --callout-color: var(--callout-tip); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="tip"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout[data-callout="success"] { + --callout-color: var(--callout-success); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="success"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout[data-callout="question"] { + --callout-color: var(--callout-question); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="question"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout[data-callout="warning"] { + --callout-color: var(--callout-warning); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="warning"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout[data-callout="danger"] { + --callout-color: var(--callout-error); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="danger"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout[data-callout="failure"] { + --callout-color: var(--callout-fail); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="failure"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout[data-callout="bug"] { + --callout-color: var(--callout-bug); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="bug"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout[data-callout="example"] { + --callout-color: var(--callout-example); + background-color: color-mix(in oklch, var(--callout-color) 10%, transparent); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="example"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .callout[data-callout="quote"] { + --callout-color: var(--callout-quote); + background-color: rgba(var(--bg_highlight_dark_x), 0.5); + background-image: none; + background: rgba(36, 40, 59, 0.5) none repeat scroll 0% 0% / auto padding-box + border-box; + color: rgb(192, 202, 245); + mix-blend-mode: normal; + border: 0px solid rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .callout[data-callout="quote"] > .callout-title { + --callout-color: 122, 162, 247; + color: var(--callout-color); + gap: 4px; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; + background-color: rgba(0, 0, 0, 0); + background-image: none; + background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box + border-box; +} +body body.theme-dark .markdown-rendered table { + background-color: rgba(0, 0, 0, 0); + border-collapse: separate; + color: rgb(192, 202, 245); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + table-layout: auto; + text-align: start; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 16px 0px 0px; + margin-block-end: var(--p-spacing); + margin-block-start: var(--p-spacing); + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark .markdown-rendered thead { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .markdown-rendered tbody { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body body.theme-dark .markdown-rendered th { + background-color: rgba(0, 0, 0, 0); + color: var(--table-header-color); + font-weight: var(--table-header-weight); + text-align: start; + vertical-align: var(--table-cell-vertical-alignment); + box-shadow: none; + text-decoration: rgb(218, 218, 218); + letter-spacing: normal; + border-left: var(--table-column-first-border-width) solid rgb(41, 46, 66); + border-right: 1px solid rgb(41, 46, 66); + border-top: var(--table-header-border-width) solid rgb(41, 46, 66); + border-bottom: 1px solid rgb(41, 46, 66); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; +} +body body.theme-dark .markdown-rendered td { + background-color: rgba(0, 0, 0, 0); + color: var(--table-text-color); + font-weight: 400; + text-align: start; + vertical-align: var(--table-cell-vertical-alignment); + box-shadow: none; + text-decoration: rgb(218, 218, 218); + border: 1px solid rgb(41, 46, 66); + border-left: var(--table-column-first-border-width) solid rgb(41, 46, 66); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 4px 8px; + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 8px; +} +body body.theme-dark .markdown-rendered tr { + background-color: var(--table-header-background); + color: rgb(192, 202, 245); + font-family: + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border: 0px rgb(128, 128, 128); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .markdown-rendered tbody tr:nth-child(even) { + background-color: var(--table-background); +} +body body.theme-dark .markdown-rendered tbody tr:nth-child(odd) { + background-color: var(--table-row-alt-background); +} +body body.theme-dark .table-wrapper { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-dark .markdown-rendered img { + border-radius: 0px; + box-shadow: none; + filter: none; + max-width: 100%; + object-fit: fill; + border: 0px rgb(255, 117, 127); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; +} +body body.theme-dark .markdown-rendered figure { + background-color: rgba(0, 0, 0, 0); + text-align: start; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark .markdown-rendered figcaption { + color: rgb(192, 202, 245); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: 16px; + font-style: normal; + text-align: start; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark .markdown-rendered video { + border-radius: 0px; + box-shadow: none; + filter: none; + max-width: 100%; + object-fit: contain; + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; +} +body body.theme-dark .markdown-rendered audio { + background-color: rgba(0, 0, 0, 0); + border: 0px rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark .internal-embed { + background-color: var(--embed-background); + color: rgb(192, 202, 245); + border-radius: 0px; + border-color: rgb(192, 202, 245); + border-left: 2px solid rgb(128, 208, 255); + border-right-width: 0px; + border-top-width: 0px; + border-bottom-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark .markdown-embed { + background-color: var(--embed-background); + color: rgb(192, 202, 245); + border-radius: 0px; + border-left: solid; + border-width: 0px; + border-color: rgb(192, 202, 245); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 0px; + padding-block-end: 0px; + padding-block-start: 0px; + padding-inline-end: 0px; + padding-inline-start: 0px; +} +body body.theme-dark .file-embed { + background-color: var(--background-primary-alt); + color: var(--text-muted); + border-radius: 8px; + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 8px; + border-top-right-radius: 8px; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; + margin: 0px; + margin-block-end: 0px; + margin-block-start: 0px; + margin-inline-end: 0px; + margin-inline-start: 0px; + padding: 8px; + padding-block-end: 8px; + padding-block-start: 8px; + padding-inline-end: 8px; + padding-inline-start: 8px; +} +body body.theme-dark .internal-embed .markdown-embed { + padding-left: 0px; + color: rgb(192, 202, 245); +} +body body.theme-dark .nav-view-outer .tree-item-self a { + color: rgb(169, 177, 214); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; +} +body body.theme-dark .nav-view-outer .tree-item-self.mod-active { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} +body + body.theme-dark + .nav-view-outer + .nav-view + > .tree-item.is-collapsed + > .tree-item-children + > .tree-item + > .tree-item-self { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--nav-item-weight); +} +body + body.theme-dark + .nav-view-outer + .nav-view + > .tree-item + > .tree-item-children + > .tree-item + > .tree-item-self { + color: var(--nav-item-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: var(--nav-item-weight); +} +body body.theme-dark .graph-view-container { + background-color: var(--background-secondary); + color: rgb(192, 202, 245); + border: 2px solid rgba(0, 0, 0, 0); + border-top-left-radius: 8px; + border-top-right-radius: 8px; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} +body body.theme-dark .clickable-icon { + background-color: rgba(0, 0, 0, 0); + color: var(--icon-color); + cursor: var(--cursor); + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} +body body.theme-dark h1 { + color: var(--h1-color); + font-family: var(--h1-font); + font-weight: var(--font-weight); + text-decoration: rgb(218, 218, 218); + text-transform: none; + border: 0px rgb(255, 117, 127); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark h2 { + color: var(--h2-color); + font-family: var(--h2-font); + font-weight: var(--font-weight); + text-decoration: rgb(218, 218, 218); + text-transform: none; + border: 0px rgb(224, 175, 104); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark h3 { + color: var(--h3-color); + font-family: var(--h3-font); + font-weight: var(--font-weight); + text-decoration: rgb(218, 218, 218); + text-transform: none; + border: 0px rgb(158, 206, 106); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark h4 { + color: var(--h4-color); + font-family: var(--h4-font); + font-weight: var(--font-weight); + text-decoration: rgb(218, 218, 218); + text-transform: none; + border: 0px rgb(125, 207, 255); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark h5 { + color: var(--h5-color); + font-family: var(--h5-font); + font-weight: var(--font-weight); + text-decoration: rgb(218, 218, 218); + text-transform: none; + border: 0px rgb(122, 162, 247); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark h6 { + color: var(--h6-color); + font-family: var(--h6-font); + font-weight: var(--font-weight); + text-decoration: rgb(218, 218, 218); + text-transform: none; + border: 0px rgb(187, 154, 247); + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + border-start-start-radius: 0px; + border-start-end-radius: 0px; + border-end-start-radius: 0px; + border-end-end-radius: 0px; +} +body body.theme-dark .site-footer { + background-color: var(--status-bar-background); + color: var(--status-bar-text-color); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-size: var(--status-bar-font-size); + text-align: start; + padding-top: 4px; + padding-bottom: 4px; + padding-left: 4px; + padding-right: var(--size-4-2); + padding-block-end: 4px; + padding-block-start: 4px; + padding-inline-end: 8px; + padding-inline-start: 4px; +} +body body.theme-dark .site-footer a { + color: rgb(169, 177, 214); + font-size: 12px; + font-weight: 400; +} +body body.theme-dark .nav-header { + color: rgb(192, 202, 245); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; + font-weight: 400; +} +body body.theme-dark .nav-files-container .tree-item { + background-color: rgba(0, 0, 0, 0); + color: rgb(192, 202, 245); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-dark .nav-file-title { + color: var(--nav-item-color); +} +body body.theme-dark .nav-file-title-content { + color: rgb(169, 177, 214); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body body.theme-dark .nav-files-container { + background-color: rgba(0, 0, 0, 0); + border-color: rgb(192, 202, 245); + border-width: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} +body body.theme-dark .site-body-left-column-site-theme-toggle { + background-color: rgba(0, 0, 0, 0); + color: var(--icon-color); + cursor: var(--cursor); + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} +body body.theme-dark .site-body-left-column-site-theme-toggle svg { + stroke: rgb(169, 177, 214); + color: rgb(169, 177, 214); +} +body body.theme-dark .view-header-breadcrumb { + background-color: rgba(0, 0, 0, 0); + color: rgb(169, 177, 214); + border-color: rgb(169, 177, 214); + border-width: 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} +body body.theme-dark .view-header-breadcrumb-separator { + color: var(--text-faint); + font-family: + '"JetBrains Mono", monospace, "Inter", sans-serif', + ui-sans-serif, + -apple-system, + BlinkMacSystemFont, + system-ui, + "Segoe UI", + "Google Sans Flex", + Roboto, + "Inter Variable", + Inter, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + sans-serif; +} +body + .callout[data-callout="note"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-default, 2, 122, 255)); +} +body + .callout[data-callout="abstract"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-summary, 83, 223, 221)); +} +body + .callout[data-callout="info"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-info, 2, 122, 255)); +} +body + .callout[data-callout="todo"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-todo, 2, 122, 255)); +} +body + .callout[data-callout="tip"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-tip, 83, 223, 221)); +} +body + .callout[data-callout="success"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-success, 68, 207, 110)); +} +body + .callout[data-callout="question"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-question, 233, 151, 63)); +} +body + .callout[data-callout="warning"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-warning, 233, 151, 63)); +} +body + .callout[data-callout="failure"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-fail, 251, 70, 76)); +} +body + .callout[data-callout="danger"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-error, 251, 70, 76)); +} +body + .callout[data-callout="bug"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-bug, 251, 70, 76)); +} +body + .callout[data-callout="example"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-example, 168, 130, 255)); +} +body + .callout[data-callout="quote"] + > .callout-title + > .callout-icon + > svg.svg-icon { + stroke: rgb(var(--callout-quote, 158, 158, 158)); +} +body pre > code, +body .markdown-rendered pre > code { + line-height: 1.5; + background-color: transparent; +}