.melding {
	position: fixed;
	left: 50%;
	top: 50%;
	background: var(--green);
	color: var(--white);
	transform: translate(-50%,-50%);
	z-index: 93;
	border-radius: 10px;
	text-align: center;
	width: 400px;
	max-width: 70%;
	overflow: hidden;
/*	filter: drop-shadow(0px 0px 100px #fff);*/
}
.melding a {
	display: block;
	color: var(--white);
}
.melding img {
	display: block;
	width: 100%;
}
.melding .melding_txt {
	padding: 20px;
}
.melding .melding_txt .naam {
	font-weight: bold;
	font-size: 1.4em;
	font-family: "PT Serif";
}
.melding .melding_close {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 15px;
	height: 15px;
	background-image: url('/images/icons/close.svg');
	background-size: 15px 15px;
	cursor: pointer;
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(160deg) brightness(101%) contrast(102%);
}
.melding_bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgb(255,255,255, 0.5);
	z-index: 92;
	cursor: pointer;
}