.categorie{
	border:1px solid gray;
	font-size: 20px;
	font-weight: bold;
	background-color: #efefef;
	color: #058b8c;;
	padding: 5px 5px 5px 3px;
}
.item:first-child {
	margin-top:20px;
}
.item{
	border:1px solid gray;
	background-color: white;
	padding: 5px 2px 6px 10px;
	color: black;	
	font-weight:normal;
	font-size: 16px;
}
.item input{
	float: right;
	width: 40px;
	text-align: center;	
}
.totaal{
	margin:5px; 
	border:2px solid darkgray;
	position:fixed;
	top:393px;
	left:max(calc(50% - 180px) , 360px);
	padding:10px;
	background-color:orange;
}
.totaal input{
	width:90px;
	text-align: center;
	border: none;
	border-bottom: 1px dashed lightgray;
	background-color: #ffc04bd9;
	text-align: center;
}
h2{
	color: orange;
	text-align: center;	
}
.items{
	float: left; 
	margin:5px;
}
.spinner{
	float:right;
}
.spinner.decrement{
	margin-left: 20px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.btn-terug{
	display: none;
	float: right; 
	border: 1px solid lightgray; 
	padding: 12px; 
	background-color: #058b8c;
	font-size: 18px; 
	cursor: pointer;
	color: white;
}
@media only screen and (max-width : 675px) {
	.totaal{
		position:sticky;
		top:40px;
		width: calc(100% - 43px);
		left: 0px;
		text-align: center;
	}
	.items{
		float:unset;
		top: 140px;
		width: calc(100% - 20px);
	}
	.btn-terug{
		float: unset;
		margin-left: 5px;
		margin-right: 13px;
		text-align: center;
	}
}