/**
 * GHColors theme by Avi Aryan (http://aviaryan.in)
 * Inspired by Github syntax coloring
 */
pre.wp-block-code code {
	color: #3b3b3b;
	padding-left: 0;
	border: none;
	overflow-x: initial;
	font-size: .85em;
}

pre.wp-block-code,
code[class*='language-'] {
	color: #3b3b3b;
	font-family: "Source Code Pro", ui-monospace, "Cascadia Mono", "Segoe UI Mono", "Liberation Mono", Menlo, Monaco, Consolas, monospace;
	direction: ltr;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	line-height: 1.43em;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

/* Code blocks */
pre.wp-block-code {
	background: #f4f4f4;
	/*padding: 1em;*/
	overflow: auto;
	border-left: 3px solid #6b81af;
	border-radius: 3px;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #999988;
	font-style: italic;
}

.token.string,
.token.attr-value {
	color: #2a00ff;
	font-weight: 400;
}

.token.entity,
.token.url,
.token.symbol,
.token.number,
.token.boolean,
.token.variable,
.token.constant,
.token.property,
.token.regex,
.token.inserted {
	color: inherit;
}

.token.atrule,
.token.keyword,
.token.attr-name,
.language-autohotkey .token.selector {
	color: #395fb0;
    font-weight: 600;
}

.token.tag,
.token.selector,
.language-autohotkey .token.keyword {
	color: #395fb0;
    font-weight: 600;
}

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

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: -18px -18px 12px -18px;
	padding: 4px 16px;
	color: #333;
	background-color: #ededed;
    font-size: .8em;
    font-weight: 500;
}