.blur-box {
	position: relative;
	display: block;
	margin-top: 12px;
	margin-bottom: 24px;
}

/* verborgen checkbox */
.blur-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.toggle {
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	right: auto;
	max-width: 720px;
	width: 100%;
	bottom: 0;

	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;

	opacity: 1;
	transition: all 0.3s ease-in-out;
	user-select: none;
	cursor: pointer;
}

.blur {
	filter: blur(5px);
	transition: all 0.3s ease-in-out;
}

/* checkbox = aan */
.blur-toggle:checked ~ .toggle {
	opacity: 0.1;
	/* pointer-events: none; */
}

.blur-toggle:checked ~ .blur {
	filter: none;
}