* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body {
	height: 100vh;
	width: 100vw;
}

body {
	background-image: url("/static/images/clean-bg-gray.png");
}

content.loading {
	display: flex;
	align-items: center;
	justify-content: center;
}

body > .wrapper {
	min-height: calc(100vh - 52px);
	color: #eee;
	display: flex;
	justify-content: center;
		align-items: center;
}

body > .wrapper.sizer {
	margin-top: -200vh;
	opacity: 0;
}

content {
	padding: 1.3em 1.2em;
	background-color: rgba(255,255,255,0.5);
	border-radius: 0.4em;
	background-image: url("/static/images/clean-bg-whiter.png");
	box-shadow: 0 0 4px rgba(0,0,0,.14), 4px 4px 8px rgba(0,0,0,.28);
}

content#real-content {
	color: #333;
	transition: all 0.4s ease-in-out;
	max-width: 95vw;
	overflow-x: auto;
	overflow-y: hidden;
	/* width: 298px; */
	/* height: 298px; */
}

hr.div {
	margin: 9px 0 4px 0;
}

hr.dev {
	margin: 4px 0 9px 0;
}

hr.bottom-div {
	margin: 6px 0 9px 0;
}


pre.err-pre {
	color: #533;
	white-space: pre-wrap;
}

input[type="button"].icon {
	padding: 2px;
	color: #333;
	font: normal normal normal 48px/1 'Material Icons';
}

.flex-padder {
	padding: 5px;
}

@media screen and (max-width: 570px) {
	content#real-content {
		box-sizing: unset;
		width: 100vw !important;
		height: 100% !important;
		border-radius: 0;
	}
}