/* PrismJS 1.23.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript+arduino+c+cpp+json+latex+ocaml+python+regex+sql */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @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: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-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;
	}
}

pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

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

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

.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;
	background: hsla(0, 0%, 100%, .5);
}

.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;
}
 */


 code,
pre {
    font-family: Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
    font-size: 0.8em;
    line-height: 18px;
    text-align: left;
    white-space: pre;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    /*background: #FBF7F4;*/
    color: var(--code-default-color);
    font-weight: normal;
    font-style: normal;
}

code {
    display: inline-block;
    text-align: left;
}


.pre-wrapper {
    display: block;
    width: 100%;
    text-align: center;
}

/* Code blocks */
pre {
    width: 100%;
    padding: calc(1em / 2);
    margin: calc(1em / 2) 0;
    overflow: auto;
    text-align: center;
    border-radius: var(--border-radius);
    font-size: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

code {
    padding: 1em 1.2em;
    border-radius: 8px;
    border-top: 1px solid var(--code-border-color);
    box-shadow: 0 0 4px inset rgba(100, 100, 100, 0.2), 0 0 56px inset rgba(100, 100, 100, 0.1);
}

pre code {
    border-radius: 10px;
}

/*pre + pre {
    background-color: transparent;
    margin-top: calc(1em * -1.5);
    
}

pre + pre > code {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    border-top: none;
}*/

/* Inline code */
:not(pre) > code {
    padding: .1em .3em;
    line-height: 1.3em;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: var(--code-comment-grey);
    font-family: CMSerif;
    font-size: 18px;
    line-height: 18px;
    /*font-style: italic;*/
}

.token.punctuation {
    color: var(--code-punctuation-blue);
}

.token.namespace {
    opacity: .7;
}

.token.keyword,
.token.operator {
    color: var(--code-operator-orange);
}

.token.function {
    color: var(--code-function-color);
}


.token.boolean,
.token.number {
    color: var(--code-number-orange);
}

.token.property {
    color: #c08b30;
}

.token.tag {
    color: #3d8fd1;
}

.token.string {
    color: var(--code-string-yellow)
}

.token.selector {
    color: #6679cc;
}

.token.attr-name {
    color: #c76b29;
}

.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: var(--code-blue);
}

.token.attr-value,
.token.control,
.token.directive,
.token.unit,
.token.builtin {
    color: var(--code-blue);
}

.token.statement,
.token.regex,
.token.atrule {
    color: var(--code-blue);
}

.token.placeholder,
.token.variable {
    color: #3d8fd1;
}

.token.deleted {
    text-decoration: line-through;
}

.token.inserted {
    border-bottom: 1px dotted #202746;
    text-decoration: none;
}

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

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

.token.important {
    color: #c94922;
}

.token.entity {
    cursor: help;
}

pre > code.highlight {
    outline: 0.4em solid #c94922;
    outline-offset: .4em;
}

/* Line numbers */

pre[class*="language-"].line-numbers {
    position: relative;
    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;
    left: -2.5em;
    width: 2em;
    letter-spacing: -1px;

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

    margin-top: 1em;
}

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

.line-numbers-rows > span:before {
    content: counter(linenumber);
    color: var(--code-border-color);
    transition: color 0.3s;
    display: block;
    text-align: right;
}

.pre-wrapper:hover pre[class*="language-"].line-numbers .line-numbers-rows span:before {
    color: var(--code-comment-grey);
}