/* common.css: */
* {
	box-sizing: border-box;
	cursor: default;
}
body {
	font-family: Arial;
	margin: 0;
	overflow: hidden;
}
body > * {
	position: absolute;
}
table {
	border-collapse: collapse;
	width: 100%;
}
td {
	vertical-align: top;
}
img {
	max-width: 100%;
}
input:focus,
button:focus {
	outline: none;
}
hr {
	background-color: white;
	border: none;
	left: 50%;
	margin: 0;
	top: 0;
	width: 1px;
	height: 100%;
}
.border {
	border: 1px solid silver;
}
.center {
	text-align: center!important;
}
.floatRight {
	float: right;
}
.negative {
	color: red;
}
.padded {
	padding: 10px;
}
.right {
	text-align: right!important;
}
.flex {
	display: flex;
}
.flex > * {
	flex: 1;
}
/* lockscreen.css: */
body {
	background-color: black;
	color: white;
	font-size: 2.5vh;
}
input {
	background-color: transparent;
	border: 1px solid white;
	color: inherit;
	padding: 10px;
}
#numpad {
	opacity: .1;
	left: 25%;
	margin-left: -150px;
	margin-top: -200px;
	top: 50%;
	transition: 300ms;
	width: 300px;
}
#numpad #balanceRow {
	display: none;
}
#numpad input {
	background-color: transparent;
	border: 1px solid white;
	color: white;
	line-height: 36px;
	margin: 3px;
}
#numpad #backspace {
	font-size: 8vh!important;
	padding-left: 2vh;
	text-align: left;
}
#preview {
	right: 50%;
	text-align: right;
	width: 400px;
}
#preview #image {
	background: no-repeat right center;
	background-size: contain;
	margin-left: 200px;
	margin-bottom: 10px;
	width: 200px;
	height: 200px;
}
#title,
#price {
	text-align: right;
}
#price {
	font-size: 2.4em;
}