/**
 * From: https://github.com/AGMStudio/prism-theme-one-dark/blob/master/prism-onedark.css
 *
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 *
 */



pre.wp-block-code code {
	color: #abb2bf;
	padding-left: 0;
	border: none;
	overflow-x: initial;
}

code[class*='language-'],
pre[class*='language-'] {
	color: #abb2bf;
	background: none;
	font-family: Hack, 'Fira Code', Consolas, Menlo, Monaco, 'Andale Mono',
		'Lucida Console', 'Lucida Sans Typewriter', 'DejaVu Sans Mono',
		'Bitstream Vera Sans Mono', 'Liberation Mono', 'Nimbus Mono L',
		'Courier New', Courier, monospace;
	line-height: 1.5;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	font-size: 0.8125rem;
	border-radius: 0.5rem;
}

pre.wp-block-code code[class*='language-'] {
	overflow: visible;
} 




/*
pre[class*='language-']::selection,
pre[class*='language-'] ::selection,
code[class*='language-']::selection,
code[class*='language-'] ::selection {
	text-shadow: none;
	background: #d84315;
	color: #fff;
}
*/

@media print {
	code[class*='language-'],
	pre[class*='language-'] {
		text-shadow: none;
	}
}
/* Code blocks */
pre.wp-block-code {
	background: #1e1e2e;
	overflow: auto;
}

:where(pre.wp-block-code) {
	padding: 1rem;
	margin: 0.5em auto;
	border-radius: 8px;
	border: none;
}

/* mkaz: require to override twentynineteen */
.entry .entry-content .wp-block-code {
	border-radius: 8px !important;
	border: none;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #6c7086;
	/* mkaz: fix for unknown theme (Issue: #46) */
	border: none;
	/* mkaz: fix for Twenty Nineteen */
	padding-left: 0;
}

.token.punctuation {
	color: #cdd6f4;
}

.token.selector,
.token.tag {
	color: #f38ba8;
}


.token.property {
	 color: #89dceb;
}
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.attr-name,
.token.deleted {
	color: #fab387;
}

.token.string,
.token.char,
.token.attr-value,
.token.builtin,
.token.inserted {
	color: #a6e3a1;
}

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

.token.atrule,
.token.keyword {
	color: #cba6f7;
}

.token.function {
	color: #89b4fa;
}

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




/*

.tok-keyword { color: #cba6f7; }
.tok-string { color: #a6e3a1; }
.tok-comment { color: #6c7086; font-style: italic; }
.tok-number { color: #fab387; }
.tok-property { color: #89dceb; }
.tok-function { color: #89b4fa; }
.tok-tag { color: #f38ba8; }
.tok-attr { color: #fab387; }
*/


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

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

.token.entity {
	cursor: help;
}

pre.line-numbers {
	position: relative;
	padding-left: 3.8em;
	counter-reset: linenumber;
}

pre.line-numbers > code {
	position: relative;
	/* Padding can be tweaked by themes, but if top padding is off
	/* the line numbers don't align with the row. */
	padding-top: 0 !important;
}

.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: 0;

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

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

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

.prism-titlename {
	margin: -1rem -1rem 0.75rem -1rem;
	padding: 0.6rem 1rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-weight: bold;
	color: #7c7c9c;
	background-color: #16161e;
	border-bottom: 1px solid #2a2a3e;

}
.wp-block-code.line-numbers .prism-titlename {
	margin-left: -3.8em;
}



/*
	Plugin: Toolbar
*/

div.code-toolbar {
	position: relative;
}

div.code-toolbar > .toolbar {
	position: absolute;
	z-index: 10;
	top: .3em;
	right: .2em;
	top: 0.4rem;
	right: 0.5rem;

}
/*
div.code-toolbar > .toolbar {
	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 {
	/*
	color: #bbb;
	font-size: .8em;
	padding: 0 .5em;
	
	background: #f5f2f0;
	background: rgba(224, 224, 224, 0.2);
	box-shadow: 0 2px 0 0 rgba(0,0,0,0.2);
	border-radius: .5em;
	*/

	padding: 0.125rem 0.5rem;
	border-radius: 0.25rem;
	border: 1px solid #3a3a5e;
	background: #2a2a3e;
	color: #a0a0c0;
	font-size:0.8125rem;
	transition: background .15s, color .15s;
	cursor: pointer;

}

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;
	text-decoration: none;
	background: #3a3a5e;
    color: #e0e0f0;


}

.copy-to-clipboard-button {


}
.copy-to-clipboard-button::hover {
	
}
/*
.copy-to-clipboard-button::before {
	content: ' ';
	display: inline-block;
	width: 12px;
	height: 12px;

	
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='9' y='9' width='13' height='13' rx='2'/%3E%3Cpath d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;




}
*/








