html,
body {
	margin: 0px;
	background-color: #292d3e;
}
.CodeMirror {
	top: 36px;
	position: absolute !important;
	width: 100% !important;
	font-size: 22px;
	min-height: 300px;
	resize: none;
}
.CodeMirror-line span {
	color: #fff;
}
.CodeMirror-hints {
	border-radius: 6px;
	border: none !important;
	background: #1d1f2b !important;
}
.CodeMirror-hint {
	color: rgba(255, 255, 255, 0.5) !important;
	font-size: 22px;
	resize: none;
	padding-right: 4px !important;
}
.CodeMirror-hint a {
	float: right;
	color: rgba(255, 255, 255, 0.3) !important;
	margin-left: 20px;
}
li.CodeMirror-hint-active {
	color: rgba(255, 255, 255, 0.8) !important;
	background: rgba(0, 0, 0, 0.5) !important;
}
li.CodeMirror-hint-active a {
	color: rgba(255, 255, 255, 0.5) !important;
}
.CodeMirror-foldmarker {
	text-shadow: none !important;
}
@font-face {
	font-family: 'GameFont';
	/* src: url("./fonts/font2.ttf"); */
	src: url("./fonts/FrVrKrunkerBold2.ttf");
}
#scriptArea_client, #scriptArea_server {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 22px;
	resize: none;
}
.cm-s-material-palenight .CodeMirror-activeline-background {
	background: rgba(0, 0, 0, 0.2) !important;
}
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #5b5b5b;
}
::-webkit-scrollbar {
	width: 12px;
}
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #777777;
	-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.6);
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.6);
}
.code-error {
	background-color: rgba(255, 0, 0, 0.3);
}
#tabHolder {
	position: absolute;
	height: 36px;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #222;
}
#tabHolder .tab {
	width: fit-content;
	display: block;
	float: left;
	background-color: #222;
	font-family: "GameFont";
	color: #888;
	font-size: 12px;
	padding: 6px 14px;
	height: 24px;
	user-select: none;
}
#tabHolder .tab.selected {
	background-color: #292d3e;
}
#tabHolder .tab:hover {
	color: #fff;
	cursor: pointer;
}
#compile {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 15px 0px;

	text-align: center;
	font-family: monospace;
	font-size: 20px;
	font-weight: bold;

	color: white;
	background-color: #2196f3;

	z-index: 10;
}
#compile:hover {
	background-color: #03a9f4;
	cursor: pointer;
}
.tabIcon {
	max-width: 24px;
	float: left;
	margin-left: -5px;
	position: relative;
	margin-right: 5px;
	vertical-align: sub;
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased
}
.iconE {
	color: #ef2929 !important;
}
.iconE:after {
	content: "error_outline";
}
.iconV {
	color: #98ff00 !important;
}
.iconV:after {
	content: "task_alt";
}
.iconC {
	color: #888888 !important;
}
.iconC:after {
	content: "circle";
}
#label {
	float: right;
	font-size: 14px;
	font-family: "GameFont";
	color:rgba(255,255,255,0.5);
	margin-right: 10px;
	margin-top: 5px;
	user-select: none;
}
