/*<meta />*/

/* PrismJS 1.24.1
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript+python&plugins=line-numbers+highlight-keywords+toolbar+copy-to-clipboard+match-braces */

/**
 * 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;
	/* Background on the code snippet text only */
	/* border: 1px solid red; */
	/* Border on the code snippet text only */
	text-shadow: 0 1px white;
	font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif;
	font-size: 1.05em;
	text-align: left;
	white-space: pre-wrap;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.75;
	-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;
}

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

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

/* Code blocks */

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

:not(pre) > code[class*="language-"],
pre[class*="language-"]
{
	border: 1px solid #f0a117;
	/* Border on the entire code snippet container */
	background: rgba(250, 250, 250, 1.0);
	/* Background on the entire code snippet container */
	/*background: rgba(255, 255, 230, 0.5);*/
	/*background: none;*/
}

pre[class*="language-"]:hover
{
	background: none;
}

pre.thin
{
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 1em;
	padding-right: 1em;
	/*border: 1px solid #f0a117;*/
}

/* Inline code */

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

.token.comment
{
	color: #006500;
	font-style: italic;
}

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

.token.punctuation
{
	/*color: #999;*/
	/* If no color specified, uses the default color for pre */
}

.token.namespace
{
	opacity: .7;
}

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

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

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string
{
	/*color: #9a6e3a;*/
	/* If no color specified, uses the default color for pre */
	/* 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: #B60000;
	font-weight: bold;
}

.token.keyword.keyword-hcl,
.token.keyword.keyword-api_get,
.token.keyword.keyword-api_post,
.token.keyword.keyword-join,
.token.keyword.keyword-read_csv,
.token.keyword.keyword-secret,
.token.keyword.keyword-to_hb_results,
.token.keyword.keyword-unmask
{
	color: #0000FF;
	font-weight: bold;
}

.token.keyword.keyword-other,
.token.keyword.keyword-lkey,
.token.keyword.keyword-lcolumns,
.token.keyword.keyword-rkey,
.token.keyword.keyword-rcolumns,
.token.keyword.keyword-join_type
{
	color: #B60000;
	font-weight: normal;
}

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

.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.line-numbers[class*="language-"]
{
	position: relative;
	padding-left: 3.8em;
	counter-reset: linenumber;
}

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

.line-numbers .line-numbers-rows
{
	position: absolute;
	pointer-events: none;
	top: 0;
	/*font-size: 100%;*/
	font-size: 1.05em;
	left: -3.8em;
	width: 3em;
	/* works for line-numbers below 1000 lines */
	letter-spacing: -1px;
	/*border-right: 1px solid #999;*/
	border-right: 1px solid #737373;
	-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-height: normal;
}

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

/* Fallback, in case JS does not run, to ensure the code is at least visible */

[class*='lang-'] script[type='text/plain'],
[class*='language-'] script[type='text/plain'],
script[type='text/plain'][class*='lang-'],
script[type='text/plain'][class*='language-']
{
	display: block;
	font: 100% Consolas, Monaco, monospace;
	white-space: pre;
	overflow: auto;
}

div.code-toolbar
{
	position: relative;
}

div.code-toolbar > .toolbar
{
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	transition: opacity 0.3s ease-in-out;
	opacity: 0;
}

div.code-toolbar:hover > .toolbar
{
	opacity: 1;
}

/* Separate line b/c rules are thrown out if selector is invalid.
   IE11 and old Edge versions don't support :focus-within. */

div.code-toolbar:focus-within > .toolbar
{
	opacity: 1;
}

div.code-toolbar > .toolbar > .toolbar-item
{
	display: inline-block;
}

div.code-toolbar > .toolbar > .toolbar-item > a
{
	cursor: pointer;
}

div.code-toolbar > .toolbar > .toolbar-item > button
{
	background: none;
	border: 0;
	color: inherit;
	font: inherit;
	line-height: normal;
	overflow: visible;
	padding: 0;
	-webkit-user-select: none;
	/* for button */
	-moz-user-select: none;
	-ms-user-select: none;
}

div.code-toolbar > .toolbar > .toolbar-item > a,
div.code-toolbar > .toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar > .toolbar-item > span
{
	font-size: 1em;
	font-weight: bold;
	color: #FFFFFF;
	padding: 0.2em 0.2em;
	background: #4d4d4d;
	border: 1.75px solid #4d4d4d;
	/*background: rgba(224, 224, 224, 0.2);*/
	/*box-shadow: 0 2px 0 0 rgba(0,0,0,0.2);*/
	border-radius: .5em;
}

ol > li > div.code-toolbar > .toolbar,
ul > li > div.code-toolbar > .toolbar
{
	position: absolute;
	top: 0.6em;
	right: 0.5em;
}

div.code-toolbar > .toolbar > .toolbar-item > a:hover,
div.code-toolbar > .toolbar > .toolbar-item > a:focus,
div.code-toolbar > .toolbar > .toolbar-item > button:hover,
div.code-toolbar > .toolbar > .toolbar-item > button:focus,
div.code-toolbar > .toolbar > .toolbar-item > span:hover,
div.code-toolbar > .toolbar > .toolbar-item > span:focus
{
	/*color: inherit;*/
	color: #FFFFFF;
	text-decoration: none;
}

.token.punctuation.brace-hover,
.token.punctuation.brace-selected
{
	outline: solid 2px;
	/*color: blue;*/
}

.rainbow-braces .token.punctuation.brace-level-1,
.rainbow-braces .token.punctuation.brace-level-5,
.rainbow-braces .token.punctuation.brace-level-9
{
	color: #E50;
	opacity: 1;
}

.rainbow-braces .token.punctuation.brace-level-2,
.rainbow-braces .token.punctuation.brace-level-6,
.rainbow-braces .token.punctuation.brace-level-10
{
	color: #0B3;
	opacity: 1;
}

.rainbow-braces .token.punctuation.brace-level-3,
.rainbow-braces .token.punctuation.brace-level-7,
.rainbow-braces .token.punctuation.brace-level-11
{
	color: #26F;
	opacity: 1;
}

.rainbow-braces .token.punctuation.brace-level-4,
.rainbow-braces .token.punctuation.brace-level-8,
.rainbow-braces .token.punctuation.brace-level-12
{
	color: #E0E;
	opacity: 1;
}

