<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

/*  ----------------------------------------- GLOBAL ------------------------------------------------ */

* {
    text-rendering: optimizeLegibility;
    --accent-color: 65, 76, 253;
    --loading-bg-color: 255, 255, 255;
    --left-pane-active-width: 16rem;
    --right-pane-active-width: 16rem;
    --normal-text-color: 51, 51, 51;
    --bg-color: #f2f3f5a6;
    --bg-note: #ffffff;
    --bg-accent: #e3e5e8;
    --color-accent: #373c42;
    --bg-accent2: #626262;
    --color-accent2: #e6e6e6;
    /*--bg-accent3: #33383d;*/
    --bg-accent3: #d5d5d5;
    --color-accent3: #626262;
    --divider-color: #b9b9b9;
    --callout-bg: rgb(242, 243, 245);
    --callout-color: rgb(46, 51, 56);
    --callout-alpha: 0.1;
    --header-bg: #f6f7f8;
    --code-hightlight-color: 157, 12, 255;
    --homelink-color: #2d68b1;
    scrollbar-width: thin;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: rgb(var(--normal-text-color));
    margin: 0rem;
    background-color: rgb(var(--loading-bg-color));
}

.header {
    padding-bottom: 1rem;
}
.header.minimal-header {
    padding-bottom: 0rem;
}

#left_pane_fold_header,
#right_pane_fold_header {
    cursor: pointer;
}

@font-face {
    font-family: 'SourceCodePro-Regular';
    src: url('/recipes/obs.html/static/SourceCodePro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: monospace;
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('/recipes/obs.html/static/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* ----------------------------------------      Core      ---------------------------------------- */

blockquote {
    padding: 0rem 0rem 0rem 0.5rem;
    margin: 0rem;
    margin-bottom: 0.5rem;
    background-color: var(--bg-accent);
    border: 1px dashed var(--bg-accent3);
    color: var(--color-accent3);
}

blockquote p {
    margin: 0.4rem;
}


/* Containers */

.container {
    background-color: var(--bg-note);
    padding: 2rem;
    scrollbar-color: rgba(var(--code-hightlight-color), 0.4) #0000;
    scroll-margin-top: 2rem;
    max-width: 120rem;
    flex: auto;
    font-size: 11pt;
}
.container_filler {
    background-color: var(--bg-note);
}

.container:after {
    content: "\a\a\a\a\a\a\a\a\a";
    white-space: pre;
}

.container img {
    max-width: 100%;
    padding: 0.2rem;
}

.container video {
    margin: auto;
    max-width: 100%;
}

.container audio {
    margin: auto;
    border-radius: 1.5rem;
    background-color: black;
}

::-webkit-scrollbar {
    width: 0.3rem;
    height: 0.4rem;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(var(--code-hightlight-color), 0.4);
    border: 0px;
    border-radius: 10px;
}

.right_pane_content,
.left_pane_content {
    scrollbar-color: rgba(var(--code-hightlight-color), 0.4) #0000;
    overflow-y: scroll;
    height: calc(100vh - 10rem);
    display: none;
    padding: 1.7rem;
    padding-top: 0.9rem;
    font-family: 'Roboto-Regular';
    padding-bottom: 20rem;
}

.right_pane_content {
    padding-left: 0rem;
    padding-right: 1rem;
    max-width: unset;
}
.container_filler {
    flex: 1;
}

.active .right_pane_content,
.active .left_pane_content {
    display: block;
}




.fold_header {
    text-align: center;
    color: var(--homelink-color);
    background-color: var(--bg-accent3);
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    color: var(--color-accent);
    font-weight: 500;
}

.left_pane_fold_header {
    border-radius: 1rem 0rem 0rem 0rem;
}

.right_pane_fold_header {
    border-radius: 0rem 1rem 0rem 0rem;
}

.left_pane.active {
    min-width: 15rem;
    width: var(--left-pane-active-width);
}

.right_pane.active {
    min-width: max-content;
    width: var(--right-pane-active-width)
}

.left_pane,
.right_pane {
    width: 2rem;
    min-width: 2rem;
}

.right_pane {
    display: inline-flex;
    flex-direction: column;
}

.active.right_pane {
    flex: auto;
}

.left_pane_toggle_nav,
.right_pane_toggle_nav {
    display: none;
    flex: auto;
    margin: 0.2rem;
    cursor: pointer;
    font-size: 10pt;
    text-align: center;
    background-color: var(--bg-accent3);
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    color: var(--color-accent);
    font-weight: 500;
}

.left_pane ul,
.right_pane ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.3rem;
    font-size: 11pt;
}

.left_pane li,
.right_pane li {
    padding-top: 0.3rem;
}

.toc {
    display: none;
    background-color: rgb(var(--accent-color), 0.03);
    padding: 1rem;
    padding-top: 0.2rem;
    border-radius: 0.6rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.flex_col {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    scroll-margin-top: 20rem;
}

.flex_row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100vw;
}

.current_page_link a:hover,
.current_page_link a:link,
.current_page_link a:visited {
    color: rgb(43, 43, 43);
}

.navbar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: calc(100vw - 21rem);
    margin-bottom: -0.5rem;
}
.minimal-header .navbar {
    flex-direction: row-reverse;
    width: calc(100vw - 2rem);
}

.navbar-button {
    display: none;
    width: calc(100vw - 4rem);
    text-align: center;
    background-color: rgb(var(--accent-color), 0.17);
    color: rgb(var(--accent-color));
    padding: 0.7rem;
    border-radius: 0.4rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    cursor: pointer;
    width: calc(100vw - 4rem);
    margin-bottom: 0.7rem;
    margin-left: -0.7rem;
    margin-top: 1rem;
}



/* ---------------------------------------- Table troubles ---------------------------------------- */

table {
    margin: 1.5rem;
    margin-left: 0rem;
    text-align: left;
    border-collapse: collapse;
}

td {
    border-bottom: 1px solid rgb(var(--table-border-color-rgb), 0.3);
    padding: 0.3rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

td:nth-child(n) {
    border-left: 1px dotted rgb(var(--table-border-color-rgb), 0.3);
}

td:first-child {
    min-width: max-content;
}

th:first-child,
td:first-child {
    padding-left: 0rem;
}

tr:last-child td {
    border-bottom: 0px;
}

th {
    text-transform: capitalize;
    border: 0px;
    padding: 0.3rem;
    padding-left: 1rem;
    font-weight: normal;
    font-style: italic;
    color: var(--table-header-color);
}

h1+table {
    margin-top: 0rem;
}
embeddedtitle+table {
    margin-top: 0rem;
}

h2+table {
    margin-top: 0rem;
}

h3+table {
    margin-top: 0rem;
}

h4+table {
    margin-top: 0rem;
}


/* ---------------------------------------   Link colors / decoration  ---------------------------------------------*/


/* unvisited link */

a:link {
    color: rgb(10, 132, 255);
    text-decoration: none;
}


/* visited link */

a:visited {
    color: rgb(60, 158, 255);
    text-decoration: none;
}


/* mouse over link */

a:hover {
    color: rgb(10, 132, 255);
    text-decoration: underline;
}


/* selected link */

a:active {
    color: rgb(10, 132, 255);
    text-decoration: none;
}

a.nonexistent-link:link,
a.nonexistent-link:hover,
a.nonexistent-link:active,
a.nonexistent-link:visited {
    color: rgb(156, 156, 156);
}

a.navbar-link:visited,
a.navbar-link:hover,
a.navbar-link:link {
    color: rgb(var(--normal-text-color));
    text-decoration: none;
}

a.navbar-link:hover {
    background-color: rgb(var(--accent-color), 0.56);
}

#homelink:visited {
    color: rgb(var(--accent-color));
}

#homelink:link {
    color: rgb(var(--accent-color));
}


/* ----------------------------------------    One-offs   ---------------------------------------- */

.icon-tray {
    height: 1.6rem;
    margin-top: -0.1rem;
    display: flex
}


/* Theme selector */

.theme-button {
    width: calc(1.6rem - 6px);
    height: calc(1.6rem - 6px);
    border: 3px solid #f0f0f0;
    margin-right: 0.2rem;
    float: right;
    cursor: pointer;
    font-family: serif;
    text-align: center;
    line-height: 20px;
    font-size: 11pt;
    color: #9ea2a4;
    font-weight: bold;
}

#theme-popup {
    background-color: var(--divider-color);
    color: rgb(var(--normal-text-color));
    width: 200px;
    padding: 1rem;
    border-radius: 0.2rem;
    font-size: 10pt;
    text-align: center;
    margin: auto;
    margin-bottom: 1rem;
    display: none;
}

#theme-popup select {
    background-color: var(--bg-accent2);
    color: var(--color-accent2);
    border: none;
    padding: 0.3rem;
    border-radius: 0.2rem;
    margin-left: 0.3rem;
}

#theme-popup.active {
    display: block;
}


/* --------------------------------------- Fixes -------------------------------------------------- */

.container #homelink {
    background-color: unset;
    padding: unset;
    margin: unset;
}

.icon-tray div {
    border: 3px solid var(--bg-accent);
    width: calc(1.6rem - 6px);
    height: calc(1.6rem - 6px);
    border: 3px solid #f0f0f0;
    margin-right: 0.2rem;
    flex: 1;
    cursor: pointer;
}

.toc-header {
    color: rgb(var(--normal-text-color));
    font-weight: bold;
}
.toc-contents {
    max-width: 20vw;
}

.left_pane_content .toc-header {
    margin-right: 1.5rem;
}
.right_pane_content .toc-header {
    margin-left: 1.5rem;
}
.right_pane_content .dirtree {
    margin-left: 1.5rem;
}
.left_pane_content .toc-contents {
    margin-left: -1.5rem;
}

.tags-pane-content {
    margin: 1rem;
    max-width: 20vw;
}
.tags-pane-content h2 {
    border: 0px;
    font-size: medium;
    padding: 0px;
    margin: 0px;
}
.tags-pane-content ul {
    padding-left: 0.8rem;
}

.side-pane-container {
    padding: 0.8rem;
}

h3 {
    font-size: 13pt;
    font-weight: 500;
    border-bottom: 1px dashed var(--bg-accent3);
    padding: 2px;
    margin-bottom: 0.5rem;
}

h3+p {
    margin-top: 0rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 1300px) {
    .right_pane {
        flex: 0;
    }
}

@media (max-width: 840px) {
    .navbar {
        display: flex;
    }
}

@media (max-width: 602px) {
    .header {
        padding-bottom: 0.3rem;
    }
    .navbar {
        padding-top: 1rem;
        width: unset;
        margin: auto;
        margin-top: 1rem;
        margin-bottom: 1rem;
        flex-direction: column;
        display: none;
    }
    .navbar.active {
        display: flex;
    }
    .navbar-link {
        width: calc(100vw - 4rem);
        text-align: center;
    }
    .navbar-button {
        margin: auto;
        margin-top: -1rem;
        margin-left: unset;
        background-color: unset;
        color: unset;
    }
    .icon-tray {
        position: initial;
        margin: auto;
    }
    .left_pane_fold_header,
    .right_pane_fold_header {
        border-radius: 0rem;
    }
    .left_pane.active,
    .right_pane.active {
        display: block;
    }
    .container {
        padding: 1rem;
        height: calc(0rem + 100vh);
    }
}

@media (max-width: 450px) {

    .left_pane,
    .right_pane {
        display: none;
    }
    .left_pane_toggle_nav,
    .right_pane_toggle_nav {
        display: block;
    }
}

h1,
h2,
h3,
h4,
h5,
embeddedtitle {
    scroll-margin-top: 8rem;
}

.header {
    margin: 1rem;
    margin-left: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background-color: var(--header-bg);
    scroll-margin-top: 20rem;
    overflow-anchor: none;
}

h1,
embeddedtitle {
    font-size: 17pt;
    line-height: 34px;
    margin-top: 0px;
    margin-bottom: 16px;
    color: inherit;
    font-weight: 600;
    padding-bottom: 0.2rem;
}

h1:not(:first-of-type) {
    margin-top: 2rem;
}

h2 {
    font-size: 14pt;
    border-bottom: 1px dotted #777070;
    font-weight: 600;
    padding-bottom: 0.2rem;
    margin-top: 2rem;
}

h1+h2,
embeddedtitle+h2 {
    margin-top: 1rem;
}

h2+p {
    margin-top: 0rem;
}

.anchor {
    visibility: hidden;
    float: left;
    padding-right: 4px;
    margin-left: -20px;
    line-height: 1;
}

.anchor svg {
    fill: #2f2f2f;
}

li {
    margin-bottom: 0.3rem;
}

#antiflash {
    background-color: rgb(var(--loading-bg-color));
    position: absolute;
    z-index: 99;
    width: 100vw;
    height: 100vh;
}

.note-footer {
    display: flex;
}

.note-footer .backlinks {
    flex: 1;
}

.note-footer .tags {
    flex: 1;
}

.left_pane ul a,
.right_pane ul a {
    color: var(--color-accent);
}

.left_pane ul a:hover,
.right_pane ul a:hover {
    color: var(--muted-link-color);
    text-decoration: none;
}

.dir-container {
    padding-left: 1rem;
    display: none;
    padding-left: 1.5rem;
}

.dir-container.active {
    display: block;
    margin-bottom: 1rem;
}

.dir-button {
    background-color: transparent;
    border: none;
    font-size: 11pt;
    display: block;
    cursor: pointer;
    margin-bottom: 0.3rem;
    font-family: 'Roboto-Regular';
    color: var(--dir-tree-color);
    font-weight: bold;
    text-align: left;
}

.dir-button:first-child {
    margin-top: 0.4rem;
}

.dir-list {
    margin-top: 0.2rem;
    padding-left: 0.2rem;
    margin-bottom: 0.2rem;
}

.dir-list li {
    list-style-type: none;
    font-size: 11pt;
}

.dir-list li a:visited,
.dir-list li a:link,
.dir-list li a:hover {
    color: var(--color-accent);
    text-decoration: none;
}

.dir-list li a:hover {
    color: var(--muted-link-color);
}

.dir-list li a.active:visited,
.dir-list li a.active:link,
.dir-list li a.active:hover {
    color: rgba(var(--code-hightlight-color), 1.0);
    font-weight: bold;
}
.dir-button.folder_note.active {
    color: rgba(var(--code-hightlight-color), 1.0);
    font-weight: bold;
}
ul.dir-list {
    margin-left: 0px;
    padding-left: 0px;
}


.fn_pf {
    display: inline list-item;
    list-style: disclosure-closed;
    margin-left: -0.8rem;
    color: var(--marker-color);
}


a.inline-tag:visited,
a.inline-tag:link,
a.inline-tag:hover {
    color: var(--color-accent3);
    text-decoration: underline;
} 

.inline-tag::before { 
    content: '#';
}

.query {
    border-top: 2px solid rgba(var(--normal-text-color),0.3);
    border-bottom: 2px solid rgba(var(--normal-text-color),0.3);
    background-color: rgba(var(--normal-text-color),0.05);

    overflow-y: scroll;
    scrollbar-width: auto;

    padding-right: 2rem;
    padding-left: 1rem;
    margin-bottom: 1rem;

    width: max-content;
    min-width: 30%;
    max-width: calc(100% - 3rem);
    max-height: 500px;
}
.match-document {
    margin: 1rem;
    border-bottom: 1px solid rgba(var(--normal-text-color),0.2);
}
.match-document:last-of-type {
    border-bottom: 0px;
}

.match-document-title {
    font-weight: bold;
    margin-bottom: 1rem;
    cursor:pointer;
}
.match-document a:visited,
.match-document a:link,
.match-document a:hover {
    color: var(--normal-text-color);
    text-decoration: none;
} 

.matches {
    margin-bottom: 1rem;
}
.match-row {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted rgba(var(--normal-text-color),0.3);
}
.match-row {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted rgba(var(--normal-text-color),0.3);
}
.match-row:last-of-type {
    border-bottom: 0px;
}

.tag-box {
    display: flex;
}


.match-row.tag {
    flex: auto;
    background-color: var(--bg-note);
    padding: 0.5rem;
    min-width: unset;
    border-radius: 0.5rem;
    border: 0px;
    text-align: center;
    width: fit-content;
    max-width: max-content;
    margin: 0.2rem;
}

.match-row.keyword {
    border: 2px solid rgba(255, 255, 0, 0.5);
}
.match-row .match {
    border-bottom: 2px solid rgb(255, 255, 0);
}
.match-row.keyword .match  {
    border: 0px;
}

.match-row.tag .match {
    background-color: unset;
}


@-webkit-keyframes yellow-fade {
    from {
        background: rgb(210, 255, 11);
        color: black;
    }
    to {
        background: unset;
        color: unset;
    }
}
@-moz-keyframes yellow-fade {
    from {
        background: rgb(210, 255, 11);
        color: black;
    }
    to {
        background: unset;
        color: unset;
    }
}
@keyframes yellow-fade {
    from {
        background: rgb(210, 255, 11);
        color: black;
    }
    to {
        background: unset;
        color: unset;
    }
}

.fade-it {
    -webkit-animation: yellow-fade 1s ease-in-out 0s;
    -moz-animation: yellow-fade 1s ease-in-out 0s;
    -o-animation: yellow-fade 1s ease-in-out 0s;
    animation: yellow-fade 1s ease-in-out 0s;
}


.tag-path {
    color: var(--divider-color);
    font-weight: normal;
}

.tag-list {
    margin-top: 0.2rem;
    padding-left: 0.2rem;
    margin-bottom: 0.2rem;
}

.tag-list li {
    list-style-type: none;
    font-size: 11pt;
}
.tag-list li a.active:visited,
.tag-list li a.active:link,
.tag-list li a.active:hover {
    font-weight: bold;
}
.dir-button.folder_note.active {
    font-weight: bold;
}
ul.tag-list {
    margin-left: 0px;
    padding-left: 0px;
}

audio {
    background-color: unset;
}

.ad-cite {
    background-color: var(--bg-accent);
    padding: 1rem;
    padding-left: 1.5rem;
}
.admonition-title-icon {
    display: inline;
}
.admonition-title-icon svg {
    width: 16px;
}
.ad-cite-title {
    padding-bottom: 0.5rem;
    color: var(--color-accent);
    font-weight: bold;
}
.ad-cite-title-content {
    display: inline;
    margin-left: 4px;
}


/*  ----------------------------------------- /GLOBAL ------------------------------------------------ */

/*  ----------------------------------------- GRAPHS ------------------------------------------------ */
* {
    --graph-bg: #202020;
}

.links line {
    stroke: #999;
    stroke-opacity: 0.6;
}

.nodes circle {
    stroke: #fff;
    stroke-width: 1.5px;
    cursor:grab;
}

text {
    font-family: sans-serif;
    font-size: 10px;
    cursor: pointer;
}

.graph_svg {
    width: 100%;
    height: 400px;    
    border:1px solid black;
    margin-bottom: 0rem;
    display: none;
    margin-top: 1rem;
}
.graph_div {
    width: 100%;
    height: 400px;    
    margin-bottom: 0rem;
    display: none;
    margin-top: 1rem;

    border-radius: 0.5rem;
    overflow: hidden;
}

.graph_div_full{
    width: 100%;
    height: 80vh;
    margin-bottom: 0rem;
    margin-top: 1rem;
}

.graph_button {
    width: 100%;
    border: none;

    background-color: var(--divider-color);
    color: var(--color-accent);
    cursor: pointer;
    
    margin-top: 1rem;
    margin-bottom: 2rem;
    margin-right: 0.2rem;

    padding: 0.3rem;
    padding-left: 1rem;
    padding-right: 1rem;

    flex: auto
}

.graph_type_button {
    flex: fit-content;
    margin-right: 0;
    background-color: var(--bg-accent2);
    color: var(--bg-accent);
}
.graph-button-row {
    display:flex;
}

.graph_header_div {
    width: calc(1.6rem - 6px);
    height: calc(1.6rem - 6px);
    margin-right: 0.2rem;
    float: right;
}    

.graph_header_div_svg {
    width: 1.3rem;
}
/*  ----------------------------------------- /GRAPHS ------------------------------------------------ */


/*  ----------------------------------------- CODEHILITE ------------------------------------------------ */

.codehilite {
    background: #050b15;
    padding: 0.5rem;
    padding-left: 1rem;
    color: #d7d7d7;
    font-weight: 400;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    overflow-x: auto;
}

code {
    font-family: 'SourceCodePro-Regular';
    font-size: 10pt;
    font-weight: 500;
    background-color: var(--bg-accent);
    color: rgba(var(--code-hightlight-color), 1.0);
    padding: 0.1rem;
}

.codehilite * {
    color: white;
    background-color: inherit;
}

pre {
    line-height: 1.2rem;
    font-family: 'SourceCodePro-Regular';
    font-size: 10pt;
}

td.linenos .normal {
    color: inherit;
    background-color: transparent;
    padding-left: 5px;
    padding-right: 5px;
}

span.linenos {
    color: inherit;
    background-color: transparent;
    padding-left: 5px;
    padding-right: 5px;
}

td.linenos .special {
    color: #000000;
    background-color: #ffffc0;
    padding-left: 5px;
    padding-right: 5px;
}

span.linenos.special {
    color: #000000;
    background-color: #ffffc0;
    padding-left: 5px;
    padding-right: 5px;
}

.codehilite .hll {
    background-color: #ffffcc
}

.codehilite .c {
    color: #4b4668;
    font-style: italic
}


/* Comment */

.codehilite .k {
    color: #26adff;
}


/* Keyword */

.codehilite .o {
    color: #666666
}


/* Operator */

.codehilite .ch {
    color: #4b4668;
    line-height: 1.5rem;
}


/* Comment.Hashbang */

.codehilite .cm {
    color: #4b4668;
}


/* Comment.Multiline */

.codehilite .cp {
    color: #BC7A00
}


/* Comment.Preproc */

.codehilite .cpf {
    color: #4b4668;
}


/* Comment.PreprocFile */

.codehilite .c1 {
    color: #4b4668;
}


/* Comment.Single */

.codehilite .cs {
    color: #4b4668;
}


/* Comment.Special */

.codehilite .gd {
    color: #A00000
}


/* Generic.Deleted */

.codehilite .ge {
    font-style: italic
}


/* Generic.Emph */

.codehilite .gr {
    color: #FF0000
}


/* Generic.Error */

.codehilite .gh {
    color: #000080;
}


/* Generic.Heading */

.codehilite .gi {
    color: #00A000
}


/* Generic.Inserted */

.codehilite .go {
    color: #888888
}


/* Generic.Output */

.codehilite .gp {
    color: #000080;
}


/* Generic.Prompt */

.codehilite .gs {
    font-weight: bold;
}


/* Generic.Strong */

.codehilite .gu {
    color: #800080;
}


/* Generic.Subheading */

.codehilite .gt {
    color: #0044DD
}


/* Generic.Traceback */

.codehilite .kc {
    color: #26adff;
}


/* Keyword.Constant */

.codehilite .kd {
    color: #26adff;
}


/* Keyword.Declaration */

.codehilite .kn {
    color: #26adff;
}


/* Keyword.Namespace */

.codehilite .kp {
    color: #bff4bf
}


/* Keyword.Pseudo */

.codehilite .kr {
    color: #26adff;
}


/* Keyword.Reserved */

.codehilite .kt {
    color: #B00040
}


/* Keyword.Type */

.codehilite .m {
    color: #666666
}


/* Literal.Number */

.codehilite .s {
    color: #BA2121
}


/* Literal.String */

.codehilite .na {
    color: #7D9029
}


/* Name.Attribute */

.codehilite .nb {
    color: #fff;
    text-shadow: 1px 1px 0 #000;
}


/* Name.Builtin */

.codehilite .nc {
    color: #A9A9FF;
}


/* Name.Class */

.codehilite .no {
    color: #fd992e
}


/* Name.Constant */

.codehilite .nd {
    color: #AA22FF
}


/* Name.Decorator */

.codehilite .ni {
    color: #999999;
}


/* Name.Entity */

.codehilite .ne {
    color: #D2413A;
}


/* Name.Exception */

.codehilite .nf {
    color: #A9A9FF
}


/* Name.Function */

.codehilite .nl {
    color: #A0A000
}


/* Name.Label */

.codehilite .nn {
    color: #A9A9FF;
}


/* Name.Namespace */

.codehilite .nt {
    color: #26adff;
}


/* Name.Tag */

.codehilite .nv {
    color: #BAC4FD;
}


/* Name.Variable */

.codehilite .ow {
    color: #AA22FF;
}


/* Operator.Word */

.codehilite .w {
    color: #bbbbbb
}


/* Text.Whitespace */

.codehilite .mb {
    color: #666666
}


/* Literal.Number.Bin */

.codehilite .mf {
    color: #666666
}


/* Literal.Number.Float */

.codehilite .mh {
    color: #666666
}


/* Literal.Number.Hex */

.codehilite .mi {
    color: #666666
}


/* Literal.Number.Integer */

.codehilite .mo {
    color: #666666
}


/* Literal.Number.Oct */

.codehilite .sa {
    color: #BA2121
}


/* Literal.String.Affix */

.codehilite .sb {
    color: #BA2121
}


/* Literal.String.Backtick */

.codehilite .sc {
    color: #BA2121
}


/* Literal.String.Char */

.codehilite .dl {
    color: #BA2121
}


/* Literal.String.Delimiter */

.codehilite .sd {
    color: #BA2121;
    font-style: italic
}


/* Literal.String.Doc */

.codehilite .s2 {
    color: #BCC1A2
}


/* Literal.String.Double */

.codehilite .se {
    color: #BB6622;
}


/* Literal.String.Escape */

.codehilite .sh {
    color: #BA2121
}


/* Literal.String.Heredoc */

.codehilite .si {
    color: #BB6688;
}


/* Literal.String.Interpol */

.codehilite .sx {
    color: #bff4bf
}


/* Literal.String.Other */

.codehilite .sr {
    color: #BB6688
}


/* Literal.String.Regex */

.codehilite .s1 {
    color: #BCC1A2
}


/* Literal.String.Single */

.codehilite .ss {
    color: #BAC4FD
}


/* Literal.String.Symbol */

.codehilite .bp {
    color: #bff4bf
}


/* Name.Builtin.Pseudo */

.codehilite .fm {
    color: #A9A9FF
}


/* Name.Function.Magic */

.codehilite .vc {
    color: #BAC4FD
}


/* Name.Variable.Class */

.codehilite .vg {
    color: #BAC4FD
}


/* Name.Variable.Global */

.codehilite .vi {
    color: #BAC4FD
}


/* Name.Variable.Instance */

.codehilite .vm {
    color: #BAC4FD
}


/* Name.Variable.Magic */

.codehilite .il {
    color: #666666
}


/* Literal.Number.Integer.Long */


/*  ----------------------------------------- /CODEHILITE ------------------------------------------------ */

@layer plugin {
    #search-master-div {
        position: fixed;
        z-index: 1;
        background-color: #0000008f;
        width: 100vw;
        height: 100vh;
        display: none;
    }
    #search-master-div.active {
        display: block;
    }
    #search-slab {
        max-width: calc(min(100vw / 2, 60rem));
        margin:5rem;
        margin: auto;
        padding: 1rem;
        width: calc(100vw - 2rem);
    }
    #search-controls {
        padding: 1rem;
        background-color: var(--bg-note);
        border-radius: 0.5rem;
        width: 100%;
        max-width: calc(100% - 2.5rem);
        padding-left: 1.5rem;
        padding-bottom: 1.5rem;
    }
    #search-results-box {
        height: 0rem;
        margin-top: 1rem;
        max-width: 120rem;
    }
    #search-results {
        height: calc(100% - 1rem);
        overflow-y: scroll;
    }

    #search-master-div h3 {
        border: 0px;
        margin-top: 0px;
    }
    #search-controls button {
        padding: 0.1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: 0.5rem;

        font-family: 'Roboto-Regular';
        font-weight: bold;
    }
    #hard_search {
        margin-left: 0.6rem;
    }
    #search-master-div ul {
        padding-left: 0.3rem;
        margin-top: 0px;
    }
    #search-master-div li {
        max-height: 4rem;
        margin-bottom: 1rem;
        padding: 0.5rem;
        overflow: hidden;
        color: rgb(var(--normal-text-color));
    }
    #search-master-div li.fold-active {
        max-height: unset;
        margin-bottom: 1rem;
        padding: 0.5rem;
    }

    #search-master-div li:hover {
        background-color: var(--bg-accent);
        cursor: pointer;
    }
    .score {
        color: #719b74;
        font-family: 'SourceCodePro-Regular';
        font-size: 10pt;
    }
    #search_string{
        width: calc(100% - 1.5rem);
        padding: 0.6rem;
        border-radius: 0.2rem;
        border: 0px;
        background-color: var(--bg-accent);
        color: rgb(var(--normal-text-color));
        font-size: 12pt;
    }
    #search-instructions {
        margin-top: 1rem;
        margin-left: 0.7rem;
    }

    .search-highlights{
        margin-top: 0.2rem;
    }
    .search-highlights em {
        background-color: #8a3aff2b;
        font-style: normal;
    }
    .search-highlights g {
        color: rgb(var(--normal-text-color), 0.3);
    }

    .tooltip {
        position: relative;
        display: inline-block;
    }
    
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: rgba(0, 0, 0, 0.631);
        color: #fff;
        text-align: center;
        padding: 5px 0;

        position: absolute;
        z-index: 1;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        width: 120px;
        top: 100%;
        left: 50%;
        margin-left: -60px; 
    }


    .search-result-title {
        display: flex;
    }
    .search-result-title-name {
        flex: auto;
    }
    .search-result-fold{
        cursor: pointer;
    }

    .search-result-icon,
    .search-result-fold {
        margin: 3px;
    } 
    
    .search-result-icon {
        transform: rotate(270deg);
        width: 16px;
        height: 16px;
    }
    .fold-active .search-result-icon {
        transform: rotate(0deg);
    }  


    @media (max-width: 602px) {
        #search-slab {
            max-width: 100vw;
        }
    }
}

/*  ----------------------------------------- CALLOUTS ------------------------------------------------ */
.callout-folded .callout-content {
    display: none;
}
.callout.active .callout-content {
    display: block
}
.callout-title-fold {
    transform: rotate(270deg);
    width: 16px;
    height: 16px;
}
.active .callout-title-fold {
    transform: rotate(0deg);
}

.callout {
    font-size: 11pt;
    margin-bottom: 1rem;
    
    background-color: var(--callout-bg);
    border-left: 4px solid rgb(var(--callout-color));
    border-radius: 0.1rem 0 0 0.1rem;
    color: var(--callout-color);
}
.left_pane_content .callout {
    background-color: var(--bg-note);
}
.right_pane_content .callout {
    background-color: var(--bg-note);
}

.callout.active {
    padding-bottom: 0.1rem;
}
.callout,
.callout * {
    --callout-bg: rgb(242, 243, 245);
    --callout-color: 68, 138, 255;
    --callout-alpha: 0.1;
    }
.callout a:link,
.callout a:hover
.callout a:visited {
    color: #85c4fb;
}

.callout p {
    padding-left: 1rem;
    padding-right: 1rem;
}
.callout-icon{
    margin-right: 3px;

    color: rgb(var(--callout-color));
}
.callout-title {
    display: flex;
    margin-top: 0rem;
    padding: 0.4rem;
    padding-bottom: 0rem;
    font-weight: 700;

    background-color: rgba(var(--callout-color), var(--callout-alpha));
    border-radius: 0.3rem 0rem 0rem 0rem;
}
.callout-folded .callout-title {
    cursor: pointer;
}

.callout-title-icon,
.callout-title-fold {
    margin: 3px;
    
}
.callout-title-name {
    flex: auto;
}

.callout code {
    background-color: rgb(var(--callout-color), 0.1);
    padding-left: 0.2rem;
    padding-right: 0.3rem;
}


.callout-info,
.callout-info * {
    --callout-color: 0, 184, 212;
}
.callout-abstract,
.callout-abstract * {
    --callout-color: 0, 176, 255; 
}
.callout-summary,
.callout-summary * {
    --callout-color: 0, 176, 255;
}
.callout-tldr,
.callout-tldr * {
    --callout-color: 0, 176, 255;
}
.callout-todo,
.callout-todo * {
    --callout-color: 0, 184, 212;
}
.callout-tip,
.callout-tip * {
    --callout-color: 0, 191, 165;
}
.callout-important,
.callout-important * {
    --callout-color: 0, 191, 165;
}
.callout-success,
.callout-success * {
    --callout-color: 0, 200, 83;
}
.callout-check,
.callout-check * {
    --callout-color: 0, 200, 83;
}
.callout-done,
.callout-done * {
    --callout-color: 0, 200, 83;
}
.callout-question,
.callout-question * {
    --callout-color: 100, 221, 23;
}
.callout-help,
.callout-help * {
    --callout-color: 100, 221, 23;
}
.callout-faq,
.callout-faq * {
    --callout-color: 100, 221, 23;
}
.callout-warning,
.callout-warning * {
    --callout-color: 255, 145, 0;
}
.callout-caution,
.callout-caution * {
    --callout-color: 255, 145, 0;
}
.callout-attention,
.callout-attention * {
    --callout-color: 255, 145, 0;
}
.callout-failure,
.callout-failure * {
    --callout-color: 255, 82, 82;
}
.callout-fail,
.callout-fail * {
    --callout-color: 255, 82, 82;
}
.callout-missing,
.callout-missing * {
    --callout-color: 255, 82, 82;
}
.callout-danger,
.callout-danger * {
    --callout-color: 255, 23, 68;
}
.callout-error,
.callout-error * {
    --callout-color: 255, 23, 68;
}
.callout-bug,
.callout-bug * {
    --callout-color: 245, 0, 87; 
}
.callout-example,
.callout-example * {
    --callout-color: 124, 77, 255;
}
.callout-quote,
.callout-quote * {
    --callout-color: 158, 158, 158;
}
.callout-cite,
.callout-cite * {
    --callout-color: 158, 158, 158;
}

.callout a,
.callout a:hover,
.callout a:visited,
.callout a:link {
    color: rgb(112, 93, 207)
}
/*  ----------------------------------------- /CALLOUTS ------------------------------------------------ */


/*  ----------------------------------------- LAYOUT: Documentation ------------------------------------------------ */
body {
    width: 100vw;
    height: 100vh;
    position: static;
    overflow: hidden;
}

.container {
    flex-grow: 1;
    flex: auto;
    flex: 100;
    overflow-y: scroll;
    height: calc(100vh - 5rem);
    padding-top: 0.5rem;
}


.external-link::after {
    background: transparent url(/recipes/obs.html/static/external.svg) 0 0 no-repeat;
    background-size: auto;
    background-size: 16px;
    content: "";
    height: 16px;
    margin-left: 3px;
    width: 16px;
    display: inline-block;
    filter: invert(90%) sepia(6%) saturate(9%) hue-rotate(14deg) brightness(90%) contrast(93%);
}

.navbar-link {
    display: block;
    padding: 0.7rem;
    border-radius: 0.4rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    margin-top: -0.2rem;
    margin-bottom: 0.7rem;
    max-height: 1.5rem;
}

span.tag {
    font-weight: 600;
    color: rgb(57, 88, 136);
    text-transform: capitalize;
}

@media (max-width: 840px) {

    .container {
        width: calc(100vw - 6rem);
    }
    .container:after {
        content: "\a\a\a\a\a";
        white-space: pre;
    }
    .container-clickback {
        display: none;
    }
    .single_tab_page {
        width: 100vw;
        max-width: 100vw;
        margin:0rem;
        margin: auto;
    }  
}

@media (max-width: 602px) {
    #header_flex {
        flex-direction: column;
        margin-top: -1rem;
    }
    .navbar-button {
        display: block;
    }
    #homelink {
        display: none
    }
    .header {
        margin-bottom: 0rem;
        margin-top: 1.5rem
    }
}

@media (max-width: 450px) {
    .container {
        width: unset;
    }
}
/*  ----------------------------------------- /LAYOUT: Documentation ------------------------------------------------ */

/*  ----------------------------------------- THEME ------------------------------------------------ */


/* colors */

* {
    --muted-link-color: #2d68b1;
    --table-border-color-rgb: 98, 98, 98;
}

.theme-obs-light,
.theme-obs-light * {
    --normal-text-color: 51, 51, 51;
    --bg-color: #f2f3f5a6;
    --bg-note: #ffffff;
    --bg-accent: #e3e5e8;
    --color-accent: #373c42;
    --bg-accent2: #626262;
    --color-accent2: #e6e6e6;
    /*--bg-accent3: #33383d;*/
    --bg-accent3: #d5d5d5;
    --color-accent3: #626262;
    --divider-color: #b9b9b9;
    --header-bg: #f6f7f8;
    --homelink-color: #000000;
    --dir-tree-color: var(--color-accent);
    --marker-color: var(--divider-color);
}

.theme-obs-dark,
.theme-obs-dark * {
    --normal-text-color: 220, 221, 222;
    --bg-color: #000000;
    --bg-note: #202020;
    --bg-accent: #161616;
    --color-accent: #999999;
    --bg-accent2: #626262;
    --color-accent2: #e6e6e6;
    --bg-accent3: #33383d;
    --color-accent3: #989c9d;
    --divider-color: #1a1a1a;
    --header-bg: #000000;
    --code-hightlight-color: 200, 119, 255;
    --homelink-color: var(--color-accent3);
    --graph-bg: #161616;
    --dir-tree-color: var(--color-accent2);
    --marker-color: var(--bg-accent3);
}

.theme-obs-dark .callout,
.theme-obs-dark .callout * {
    --callout-bg: rgb(22, 22, 22);
    --callout-alpha: 0.1;
}

.theme-light,
.theme-light * {
    --normal-text-color: 51, 51, 51;
    --bg-color: #f2f3f5a6;
    --bg-note: #ffffff;
    --color-accent: #373c42;
    --bg-accent: #e3e5e8;
    --color-accent2: #e6e6e6;
    --bg-accent2: #626262;
    --bg-accent3: #d5d5d5;
    --color-accent3: #626262;
    --divider-color: #b9b9b9;
    --callout-bg: white;
    --callout-alpha: 0;
    --header-bg: #FFFFFF;
    --homelink-color: #2d68b1;
    --dir-tree-color: var(--color-accent);
    --marker-color: var(--divider-color);
}


/* icon tray */

.theme-obs-light .icon-tray div {
    background-color: white;
}

.theme-obs-dark .icon-tray div {
    background-color: var(--bg-accent3);
    border: 3px solid var(--bg-accent);
}


/* header */

.theme-obs-light .header,
.theme-obs-dark .header {
    margin: 0rem;
    margin-top: 0rem;
    padding-top: 2rem;
    background-color: var(--header-bg);
}

.theme-light .header {
    padding-bottom: 0.3rem;
}

.theme-obs-light .header.minimal-header,
.theme-obs-dark .header.minimal-header {
    padding-top: 0.4rem;
}

.theme-obs-light #homelink,
.theme-obs-light #homelink:visited,
.theme-obs-light #homelink:link,
.theme-obs-light #homelink:hover,
.theme-obs-dark #homelink,
.theme-obs-dark #homelink:visited,
.theme-obs-dark #homelink:link,
.theme-obs-dark #homelink:hover {
    margin-left: 2rem;
    margin-right: 0.5rem;
    background-color: unset;
    color: var(--homelink-color);
    width: 14rem;
}

.theme-light #homelink,
.theme-light #homelink:visited,
.theme-light #homelink:link,
.theme-light #homelink:hover {
    color: var(--homelink-color);
    width: 15.5rem;
    padding: 1rem;
    max-width: max-content;
    margin-top: -1rem;
    margin-left: 2rem;
    margin-right: 2.5rem;
    border-radius: 0.3rem;
    max-height: 1.5rem;
    background-color: rgb(var(--accent-color), 0.08);
}

.theme-obs-dark .container,
.theme-obs-light .container, 
.theme-obs-dark .container_filler,
.theme-obs-light .container_filler {
    border-top: 3px solid var(--divider-color);
}

.theme-obs-light .left_pane,
.theme-obs-light .right_pane,
.theme-obs-dark .left_pane,
.theme-obs-dark .right_pane {
    background-color: var(--bg-accent);
    border-top: 3px solid var(--divider-color);
    border-radius: 1rem;
}

.theme-light .left_pane_fold_header,
.theme-light .right_pane_fold_header {
    background-color: white;
    border-bottom: 2px solid #f0f0f0;
    color: #828282;
    max-width: 2rem;
}

.theme-light .left_pane.active {
    width: 20.3rem;
}

.theme-obs-light .right_pane,
.theme-obs-dark .right_pane {
    max-width: unset;
    border-radius: 0rem 1rem;
}

.theme-obs-light .left_pane,
.theme-obs-dark .left_pane {
    border-radius: 1rem 0rem;
}

.theme-obs-light .icon-tray,
.theme-obs-dark .icon-tray {
    margin-bottom: 1rem;
}

.theme-obs-dark .navbar-button,
.theme-obs-light .navbar-button {
    margin-left: unset;
    margin: auto;
    background-color: unset;
    color: unset;
    margin-top: -1rem;
}

.theme-obs-dark .minimal-header .navbar-button,
.theme-obs-dark .minimal-header .navbar-button {
    margin-top: 1rem;
}

.theme-obs-dark .navbar-link .theme-obs-light .navbar-link {
    width: unset;
}



@media (max-width: 602px) {
    .theme-obs-light .header {
        background-color: #e3e5e8;
    }
    .theme-obs-dark .header {
        background-color: var(--divider-color);
    }
    .theme-light .header {
        margin: 1rem;
    }
    .theme-light .navbar-button {
        margin-top: 0rem;
        margin-left: auto;
    }
    .theme-light #header_flex {
        width: 100%
    }
    .theme-light .icon-tray,
    .theme-obs-dark .icon-tray,
    .theme-obs-light .icon-tray {
        width: unset;
    }
    .theme-light .navbar,
    .theme-obs-dark .navbar,
    .theme-obs-light .navbar {
        margin-left: auto;
    }
    .theme-light .icon-tray {
        margin-bottom: 1rem;
    }
    .theme-obs-light .left_pane,
    .theme-obs-dark .left_pane,
    .theme-light .left_pane,
    .left_pane,
    .theme-obs-light .right_pane,
    .theme-obs-dark .right_pane,
    .theme-light .right_pane,
    .right_pane {
        border-radius: 0rem;
    }
}

.theme-obs-dark #theme-popup {
    background-color: var(--bg-accent);
}

.theme-obs-dark .tag-path {
    color: var(--bg-accent2);
}

.theme-button.active {
    background-color: var(--bg-accent2) !important;
    border: 3px solid #f0f0f0;
    color: #e6e6e6;
}

h1 {
    border-bottom: 0px;
}

#page_holder {
    background-color: var(--header-bg);
    color: rgb(var(--normal-text-color));
}

blockquote {
    padding: 0.1rem 0.1rem 0.1rem 0.5rem;
    border: 0px;
    border-radius: 0.21rem;
}


.theme-obs-dark .match-row .match {
    border-bottom: 2px solid rgba(255, 255, 0, 0.5);
}
.theme-obs-dark .match-row.keyword .match  {
    border: 0px;
}

/*  ----------------------------------------- /THEME ------------------------------------------------ */

/*  ----------------------------------------- OVERWRITES ------------------------------------------------ */
/* 
    Make site work when js is disabled
    .requires_js will be removed when js is loaded 
*/
.requires_js {
    display: none
}
.dir-container.requires_js {
    display: block
}
.navbar.requires_js {
    margin-bottom: 0px;
    margin-top: 0px;
    margin-left: 1rem !important;
    margin-right: 1rem;
    flex-direction: row;
    display: flex
}
.requires_js .icon-tray {
    margin: unset;
}
.requires_js .navbar-link {
    width: unset;
}
.requires_js.navbar-button {
    display: none
}

.hide,
.hidden {
    display: none
}

.formatting_strikethrough {
    text-decoration:line-through
}

/*  ----------------------------------------- /OVERWRITES ------------------------------------------------ */</pre></body></html>