:root {
	--design-color: #35A3E9;
	--active-color: #35E9A3;
	--background-color: #F2F2F2;
}

html, body {
	overflow: hidden;
}

*:not(input):not(textarea) {
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	cursor: default;
}

.content-box {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
}

.content-box._1of1 {
	width: 100%;
}

.content-box._1of3 {
	width: 33.33%;
}

.content-box._2of3 {
	width: 66.66%;
}

.field-label {
	font-size: 14px;
	font-style: italic;
	color: #AAAAAA;
	display: block;
	margin-bottom: 2px;
}

.field-label:not(:first-child) {
	margin-top: 0.8em;
}

body button {
	display: inline-block;
	color: var(--design-color);
	padding: 0.3em;
	padding-left: 0.6665em;
	padding-right: 0.6665em;
	border-radius: 5px;
	-webkit-appearance: none;
	background: transparent;
	border: none;
	font-size: 15px;
	margin: 0;
}

input, button, textarea, select {
	font-family: inherit;
}

button:not([disabled]):hover {
	background-color: rgba(0, 0, 0, 0.07);
}

button:not([disabled]):active {
	background-color: rgba(0, 0, 0, 0.14);
}

button[disabled] {
	opacity: 0.5;
}

button.default {
	font-weight: bold;
}

button.destructive {
	color: var(--destructive-action-color);
}

button.options:after {
	content: '●●●';
	font-size: 0.7em;
	display: inline-block;
	margin-bottom: 3px;
}

.vertical-centerer {
	display: inline-block;
	height: 100%;
	pointer-events: none;
	width: 0;
	vertical-align: middle;
}

.information-box {
	padding: 0.6em;
	background-color: rgba(0, 0, 255, 0.15);
	display: inline-block;
}

.error-box {
	padding: 0.6em;
	background-color: rgba(255, 0, 0, 0.15);
	display: inline-block;
}

@media screen and (max-width: 480px) {
	.content-box {
		display: block;
	}
}