/* Generated with http://k88hudson.github.io/syntax-highlighting-theme-generator/www */
/* http://k88hudson.github.io/react-markdocs */
/**
 * @author k88hudson
 *
 * Based on prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */
/*********************************************************
* General
*/
pre[class*='language-'],
code[class*='language-'] {
	color: #69aadc;
	max-width: 85vw;
	text-shadow: none;
	font-family: 'Fira Code', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono',
		monospace;
	direction: ltr;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	line-height: 1.5;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	font-size: clamp(10px, 3vw, 0.9em);
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	border-radius: 12px;
}
pre[class*='language-']::selection,
code[class*='language-']::selection,
pre[class*='language-']::mozselection,
code[class*='language-']::mozselection {
	text-shadow: none;
	background: #3c3c3c;
}
@media print {
	pre[class*='language-'],
	code[class*='language-'] {
		text-shadow: none;
	}
}
pre[class*='language-'] {
	padding-left: 1.3em;
	padding-right: 1.3em;
	padding-bottom: 1.5em;
	padding-top: 1.3em;
	/* padding-left: 0.5em; */
	/* margin: 0.5em 0; */
	margin: auto;
	overflow: auto;
	background: #1c1c1c;
	box-shadow: 0px 5px 7px 3px rgba(0, 0, 0, 0.2);
	width: min-content;
	margin-bottom: 3em;
	transition: 300ms;
}
pre[class*='language-']:hover {
	/* padding-left: 1.3em; */
	/* padding-right: 1.3em; */
	/* padding-bottom: 1.5em; */
	/* padding-top: -10px; */
	/* padding-left: 0.5em; */
	/* margin: 0.5em 0; */
	/* margin: auto; */
	/* overflow: auto; */
	/* background: #1c1c1c; */
	box-shadow: 0px 0px 10px 5px rgba(63, 117, 255, 0.384);
	width: min-content;
	/* margin-bottom: 3em; */
}
:not(pre) > code[class*='language-'] {
	padding: 0.1em 0.3em;
	border-radius: 0.3em;
	color: #ff8758;
	background: #1c1c1c;
}
/*********************************************************
* Tokens
*/
.namespace {
	opacity: 0.7;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #93a1a1;
}
.token.punctuation {
	color: #999999;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
	color: #dcfdff;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #7c7c7c;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #a67f59;
	background: #1c1c1c;
}
.token.atrule,
.token.attr-value,
.token.keyword {
	color: #95abbc;
}
.token.function {
	color: #ff8758;
}
.token.regex,
.token.important,
.token.variable {
	color: #ee9900;
}
.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}
.token.entity {
	cursor: help;
}
/*********************************************************
* Line highlighting
*/
pre[data-line] {
	position: relative;
}
pre[class*='language-'] > code[class*='language-'] {
	position: relative;
	z-index: 1;
}
.line-highlight {
	position: absolute;
	left: 0;
	right: 0;
	background: #2c2c2c;
	box-shadow: inset 5px 0 0 #f7d87c;
	z-index: 0;
	pointer-events: none;
	line-height: inherit;
	white-space: pre;
}
