.product_groep_buttons {
	display : flex;
    padding: 0 20px; 
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: top;
	gap: 10px; 
}

.productgroep_button {
	border-radius: 10px;
	border: 1px solid #bbb;
	background-color: #eee;
	margin: 10px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6); 
	max-width: 120px;
	width: 120px;
	height: 110px;
	margin-top: 15px;
	margin-bottom: 3px;
	justify-content: center;
	padding: 0 5px;
	vertical-align: top;
	position: relative;
}

.terug {
	font-size: 50px;
		margin-bottom: 15px;
	color: blue;
}

.terug:hover{
	color: red;
}

.afbeelding{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-align: center;
}

.afbeelding img {
	display: flex;
	max-height: 80px;
	max-width: 110px;
	margin-bottom: 20px;
	opacity: 0.9;
	/* background-color: purple; */
}

.afbeelding img:hover{
	opacity: 0.5;
}

.omschrijving {
    display: flex;
	color: black;
    justify-content: center;
    font-size: 11px;
    position: absolute; 
    bottom: 12px; 
    width: 95%;
	margin: 2px;
	background-color: #eee;
	opacity: 0.5;
}

@media only screen and (max-width: 768px) {
.product_groep_buttons {
	display : flex;
    padding: 0 10px; 
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: top;
	gap: 10px; 
}

.productgroep_button {
	border-radius: 5px;
	border: 1px solid #bbb;
	background-color: #eee;
	margin: 5px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6); 
	max-width: 110px;
	width: 110px;
	height: 80px;
	margin-top: 10px;
	margin-bottom: 3px;
	justify-content: center;
	padding: 0 3px;
	vertical-align: top;
	position: relative;
}

.afbeelding img {
	display: flex;
	max-height: 60px;
	max-width: 100%;
	margin-bottom: 5px;
	opacity: 0.9;
}

.omschrijving {
    display: flex;
	color: black;
    justify-content: center;
    font-size: 11px;
    position: absolute; 
    bottom: 1px; 
    width: 90%;
	margin: 2px;
	background-color: #eee;
	opacity: 0.8;
}

.terug {
	font-size: 40px;
		margin-bottom: 15px;
	color: blue;
}

}

