/* kasopmaak.css: */
body {
	font-family: Arial;
}
.flex {
	display: flex;
}
.flex > * {
	flex: 1;
}
#logo {
	float: left;
	margin-right: 20px;
	max-height: 80px;
}
#input {
	clear: both;
	margin-top: 30px;
}
input {
	font: inherit;
}
input.ignore {
	border: 0;
}
input.total {
	border: 0;
}
input[size="3"]{
	text-align: right;
	width: 50px;
}
input[size="6"]{
	text-align: right;
	width: 100px;
}
input[type="button"],
input[type="submit"] {
	height: 40px;
	margin: 3px;
	overflow: hidden;
	padding: 0;
	text-transform: uppercase;
	transition: 100ms;
	white-space: normal;
}
label {
	display: inline-block;
	margin-right: 10px;
	text-align: right;
	width: 180px;
}
#result {
	margin-top: 30px;
	white-space: nowrap;
}
#result b {
	display: inline-block;
	text-align: right;
	width: 80px;
}
#comments {
	border: 1px solid silver;
	max-width: 300px;
	min-height: 100px;
	padding: 3px;
	white-space: pre-wrap;
}
#print {
	background-color: green;
	border-radius: 10px;
	border-width: 0;
	color: white;
	padding: 8px;
}
.blue {
	background-color: #2196f3;
	color: white;
}
.green {
	background-color: #72bb53;
	color: white;
}
.orange {
	background-color: #ff6624;
	color: white;
}
@media print {
	body,
	input {
		background-color: white;
		border: 0;
		font-size: .7em;
	}
	#logo {
		max-height: 50px;
	}
	h2 {
		display: none;
	}
	label {
		width: 120px;
	}
	#comments {
		border: 0;
		padding: 0;
	}
	#print {
		display: none;
	}
}