body {
	font-family: calibri, helvetica, Geneva, sans-serif;
	background-color: #202020;
	color:white;
	margin: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
}
header {
	color: #eee;
	/* font-size: 2em; */
}

.disabled {
	color: #666 !important;
	font-style:italic;
	cursor: default;
	background-color: #2c2c2c !important;
}
.rotate {
	position:absolute;
	animation: rotation 2s infinite linear;
}
#logopic, .logopic {
	width: 13vw;
	top: 95vh;
	position: fixed;
	right: 1vw;
}
footer {
	/* position: absolute; */
	/* bottom: .2vh; */
	/* right: 0.6vw; */
}

button:focus {
    outline: none;
}
div#debugbox {
    position: absolute;
    bottom: 5px;
    left: 60px;
    background-color: #ffffff;
    padding: 10px;
    border: 2px solid red;
}
#customerLogo {
    position: absolute;
    display: none;
}
@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}