code-miror{
    display: block;
}
/* Default */
[class*="shj-lang-"] {
	white-space: pre;
	margin: 10px 0;
	border-radius: 10px;
	padding: 15px 20px;
	background: white;
	color: #112;
	box-shadow: 0 0 5px #0001;
	text-shadow: none;
	font: normal 15px Consolas, "Courier New", Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	line-height: 24px;
	box-sizing: border-box;
	max-width: min(100%, 100vw)
}
.shj-inline {
	margin: 0;
	padding: 2px 5px;
	display: inline-block;
	border-radius: 5px
}

[class*="shj-lang-"]::selection,
[class*="shj-lang-"] ::selection {background: #bdf5}
[class*="shj-lang-"] > div {
	display: flex;
	overflow: auto
}
[class*="shj-lang-"] > div :last-child {
	flex: 1;
	outline: none
}
.shj-numbers {
	padding-left: 5px;
	counter-reset: line
}
.shj-numbers div {padding-right: 5px}
.shj-numbers div::before {
	color: #999;
	display: block;
	content: counter(line);
	opacity: .5;
	text-align: right;
	margin-right: 5px;
	counter-increment: line
}

.shj-syn-cmnt {font-style: italic}

.shj-syn-err,
.shj-syn-kwd {color: #e16}
.shj-syn-num,
.shj-syn-class {color: #f60}
.shj-numbers,
.shj-syn-cmnt {color: #999}
.shj-syn-insert,
.shj-syn-str {color: #7d8}
.shj-syn-bool {color: #3bf}
.shj-syn-type,
.shj-syn-oper {color: #5af}
.shj-syn-section,
.shj-syn-func {color: #84f}
.shj-syn-deleted,
.shj-syn-var {color: #f44}

.shj-oneline {padding: 12px 10px}
.shj-lang-http.shj-oneline .shj-syn-kwd {
	background: #25f;
	color: #fff;
	padding: 5px 7px;
	border-radius: 5px
}

.shj-multiline.shj-mode-header {padding: 20px;}
.shj-multiline.shj-mode-header:before {
	content: attr(data-lang);
	color: #58f;
	display: block;
	padding: 10px 20px;
	background: #58f3;
	border-radius: 5px;
	margin-bottom: 20px
}

/* Custom */
@import 'default.css';

[class*="shj-lang-"] {
	color: #e0e2d8;
	background: #1e293b;
}
[class*="shj-lang-"]:before {color: #6f9aff}

.shj-syn-deleted,
.shj-syn-err,
.shj-syn-var {color: rgb(244 114 182)}
.shj-syn-section,
.shj-syn-kwd {color: #ff7cc6}
.shj-syn-class {color: rgb(193, 159, 248)}
.shj-numbers,
.shj-syn-cmnt {color: #7d828b}
.shj-syn-insert,
.shj-syn-type,
.shj-syn-func,
.shj-syn-bool {color: #71d58a}
.shj-syn-num {color: #b581fd}
.shj-syn-oper {color: #80c6ff}
.shj-syn-str {color: rgb(125 211 252)}

:root {
	--gradient-shadow: linear-gradient(
		45deg,
		#e69ac6,
		#8888f5,
		#cc95fa,
		#9ef1cb,
		#e69ac6,
		#ffc3e6,
		#cacaff,
		#dbffdb,
		#ffffd6,
		#ffdada
	);
}

.shadow {
	position: relative;
}
.shadow:before,
.shadow:after {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	background: var(--gradient-shadow);
	background-size: 400%;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	border-radius: 10px;
	z-index: -1;
	animation: animate 60s linear infinite;
}

.shadow:after {
	filter: blur(20px);
}

@keyframes animate {
	0% {
		background-position: 0 0;
	}
	50% {
		background-position: 300% 0;
	}
	100% {
		background-position: 0 0;
	}
}