/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

 /*
	URL: https://prismjs.com/download.html#themes=prism-twilight&languages=markup+css+clike+javascript+basic+c+csharp+cpp+csv+diff+elixir+elm+fsharp+gherkin+git+go+graphql+haskell+hcl+http+java+jolie+julia+kotlin+markup-templating+nim+php+powershell+puppet+python+qsharp+cshtml+jsx+tsx+ruby+rust+sass+scss+scheme+smalltalk+sql+swift+toml+typescript+verilog+vhdl+xml-doc&plugins=line-highlight+line-numbers+file-highlight
 */

 code[class*="language-"],
 pre[class*="language-"] {
	 color: black;
	 background: none;
	 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	 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;
	 }
 }
 
 /* Code blocks */
 pre[class*="language-"] {
	 padding: 1em;
	 margin: .5em 0;
	 overflow: auto;
	 border-radius: 4px;
 }
 
 :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;
 }
 
 .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;
	 /* This background color was intended by the author of this theme. */
	 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;
 }

	pre[data-line] {
		position: relative;
		padding: 1em;
		border-radius: 4px;
	}

	.line-highlight {
		position: absolute;
		left: 0;
		right: 0;
		padding: inherit 0;
		margin-top: 1em; /* Same as .prism’s padding-top */

		background: #95959524;

		pointer-events: none;

		line-height: inherit;
		white-space: pre;
	}

	@media print {
		.line-highlight {
			/*
			* This will prevent browsers from replacing the background color with white.
			* It's necessary because the element is layered on top of the displayed code.
			*/
			-webkit-print-color-adjust: exact;
			color-adjust: exact;
		}
	}

		.line-highlight:before,
		.line-highlight[data-end]:after {
			position: absolute;
			top: .4em;
			left: .6em;
			min-width: 1em;
			padding: 0 .5em;
			background-color: hsla(24, 20%, 50%,.4);
			color: hsl(24, 20%, 95%);
			font: bold 65%/1.5 sans-serif;
			text-align: center;
			vertical-align: .3em;
			border-radius: 999px;
			text-shadow: none;
			box-shadow: 0 1px white;
		}

		.line-highlight[data-end]:after {
			top: auto;
			bottom: .4em;
		}

	.line-numbers .line-highlight:before,
	.line-numbers .line-highlight:after {
		content: none;
	}

@media (prefers-color-scheme: dark) {
	/* PrismJS 1.29.0
	https://prismjs.com/download.html#themes=prism-twilight&languages=markup+css+clike+javascript+basic+c+csharp+cpp+csv+diff+elixir+elm+fsharp+gherkin+git+go+graphql+haskell+hcl+http+java+jolie+julia+kotlin+markup-templating+nim+php+powershell+puppet+python+qsharp+cshtml+jsx+tsx+ruby+rust+sass+scss+scheme+smalltalk+sql+swift+toml+typescript+verilog+vhdl+xml-doc&plugins=line-highlight+line-numbers+file-highlight */
	/**
	* prism.js Twilight theme
	* Based (more or less) on the Twilight theme originally of Textmate fame.
	* @author Remy Bach
	*/
	code[class*="language-"],
	pre[class*="language-"] {
		color: white;
		background: none;
		font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
		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-"],
	:not(pre) > code[class*="language-"] {
		background: hsl(0, 0%, 8%); /* #141414 */
	}

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

	pre[class*="language-"]::-moz-selection {
		/* Firefox */
		background: hsl(200, 4%, 16%); /* #282A2B */
	}

	pre[class*="language-"]::selection {
		/* Safari */
		background: hsl(200, 4%, 16%); /* #282A2B */
	}

	/* Text Selection colour */
	pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
	code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
		text-shadow: none;
		background: hsla(0, 0%, 93%, 0.15); /* #EDEDED */
	}

	pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
	code[class*="language-"]::selection, code[class*="language-"] ::selection {
		text-shadow: none;
		background: hsla(0, 0%, 93%, 0.15); /* #EDEDED */
	}

	/* Inline code */
	:not(pre) > code[class*="language-"] {
		border-radius: .3em;
		border: .13em solid hsl(0, 0%, 33%); /* #545454 */
		box-shadow: 1px 1px .3em -.1em black inset;
		padding: .15em .2em .05em;
		white-space: normal;
	}

	.token.comment,
	.token.prolog,
	.token.doctype,
	.token.cdata {
		color: hsl(0, 0%, 47%); /* #777777 */
	}

	.token.punctuation {
		opacity: .7;
	}

	.token.namespace {
		opacity: .7;
	}

	.token.tag,
	.token.boolean,
	.token.number,
	.token.deleted {
		color: hsl(14, 58%, 55%); /* #CF6A4C */
	}

	.token.keyword,
	.token.property,
	.token.selector,
	.token.constant,
	.token.symbol,
	.token.builtin {
		color: hsl(53, 89%, 79%); /* #F9EE98 */
	}

	.token.attr-name,
	.token.attr-value,
	.token.string,
	.token.char,
	.token.operator,
	.token.entity,
	.token.url,
	.language-css .token.string,
	.style .token.string,
	.token.variable,
	.token.inserted {
		color: hsl(76, 21%, 52%); /* #8F9D6A */
	}

	.token.atrule {
		color: hsl(218, 22%, 55%); /* #7587A6 */
	}

	.token.regex,
	.token.important {
		color: hsl(42, 75%, 65%); /* #E9C062 */
	}

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

	.token.entity {
		cursor: help;
	}

	/* Markup */
	.language-markup .token.tag,
	.language-markup .token.attr-name,
	.language-markup .token.punctuation {
		color: hsl(33, 33%, 52%); /* #AC885B */
	}

	/* Make the tokens sit above the line highlight so the colours don't look faded. */
	.token {
		position: relative;
		z-index: 1;
	}

	.line-numbers .line-highlight:before,
	.line-numbers .line-highlight:after {
		content: none;
	}

	pre[id].linkable-line-numbers span.line-numbers-rows {
		pointer-events: all;
	}
	pre[id].linkable-line-numbers span.line-numbers-rows > span:before {
		cursor: pointer;
	}
	pre[id].linkable-line-numbers span.line-numbers-rows > span:hover:before {
		background-color: rgba(128, 128, 128, .2);
	}

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