#configurationPanel {
	float: left;
	width: 300px;
	height: 100%;
	background-color: #ababab;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 2px;
	box-sizing: border-box;
}

#configurationPanel.floating {
	left: 5px;
	bottom: 5px;
	position: absolute;
	padding: 20px;
	width: unset;
	height: unset;
	z-index: 1;
}

#renderContainer {
	width: calc(100% - 300px);
	height: 100%;
	float: left;
	position: relative;
}

#configurationPanel.hidden+#renderContainer,
#configurationPanel.floating+#renderContainer {
	width: 100%;
	height: 100%;
}

@media (max-width:640px) {
	#configurationPanel {
		width: 100%;
		height: 40%;
		float: none;
		position: absolute;
		bottom: 0px;
		left: 0px;
		border-top: 1px solid #a3a3a3;
	}

	#renderContainer {
		width: 100%;
		height: 60%;
		float: none;
	}
}