* {
	padding: 0;
	margin: 0;
	outline: 0;
	border: 0
}

body {
	height: 100%
}

.pane {
	position: absolute;
	top: 0;
	height: 100%
}

#left {
	left: 0;
	width: 35%
}

#editor {
	width: 100%;
	height: 100%
}

#right {
	right: 0px;
	width: 65%
}

#terminal {
	width: 100%;
	height: 100%;
	background: #000
}

.terminal {
	resize: none;
	background: 0;
	width: 100%;
	color: limegreen;
	font-size: 18px;
	line-height: 18px;
	font-family: "Roboto Mono", monospace
}

.terminal#input {
	height: 23px;
	position: absolute;
	right: 0;
	bottom: 5px;
	max-height: 50%
}

.terminal#history {
	height: 100%
}

textarea.terminal {
	padding: 2px 5px;
	box-sizing: border-box
}

::-webkit-scrollbar {
	width: 5px;
	background: 0
}

::-webkit-scrollbar-thumb {
	background: #1e141e;
	border-radius: 5px
}

#saves {
	display: none
}

.alert.main {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.5);
	width: 400px;
	height: 400px
}

.alert * {
	font-family: monospace;
	color: white;
	box-sizing: border-box;
	margin: 3px
}

.alert.list ul {
	list-style: none;
	height: 340px;
	overflow: auto;
	overflow-x: hidden
}

.alert.list ul li {
	text-align: center;
	width: 100%;
	background: rgba(0, 0, 0, 0.2);
	height: 30px;
	font-size: 24px;
	cursor: pointer
}

.alert.list ul li:hover {
	background: rgba(0, 0, 0, 0.4)
}

.alert.prompt textarea {
	background: 0;
	resize: none;
	font-size: 20px;
	height: 33px;
	text-align: center;
	width: 100%;
	padding: 5px
}