@media screen and (orientation: portrait) {
	#content {
		bottom: 0px;
		left: 0px;
		right: 0px;
		height: calc(100% - 2vh);
	}

	#selection {
		top: 0px;
		right: 0px;
		left: 0px;
		overflow-x: scroll;
		white-space: nowrap;
	}

	#selection > div {
		display: inline-block;
		width: 10vh;
		font-size: 1vh;
	}

	input[type="range"] {
		height: 1vh;
	}
}

@media screen and (orientation: landscape) {
	#content {
		right: 0px;
		top: 0px;
		bottom: 0px;
		width: 85%;
	}

	#selection {
		left: 0px;
		top: 0px;
		bottom: 0px;
		width: 15%;
		overflow-y: scroll;
	}
}

body {
	background: black;
}

#content, body {
	color: #eee;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
	font-family: monospace;
}

#content {
	position: absolute;
}

#selection {
	position: absolute;
	background: #111;
	color: #eee;
	user-select: none;
}

#selection > div {
	padding-top: 10px;
	padding-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: #181818;
	text-align: center;
}


#selection > div:nth-child(even) {
	background: #222;
}

#selection .header {
	font-weight: bold;
	background: #000 !important;
}

#selection div[onclick] {
	cursor: pointer;
}

input[type="range"] {
	max-width: 100px;
}

.visualiser {
	position: absolute;
	top:0px;
	left:0px;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.loader {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.percent {
	font-size: 5vh;
}

.task {
	font-size: 3vh;
}
