.melding {
	position: fixed;
	right: 30px;
	bottom: -30px;
	z-index: 9;
	background: #f6a772;
	width: 400px;
	max-width: 90%;
	font-size: .9em;
	line-height: 1.5;
	color: #fff;
	border-radius: 10px;
	padding: 20px;
	box-sizing: border-box;
	transition: all 300ms;
}
.melding.show {
	bottom: 30px;
}
.melding .naam {
	font-size: 1.3em;
	font-weight: bold;
	font-family: "Miriam Libre";
	display: flex;
	align-items: center;
	gap: 10px;
}
.melding .naam img {
	display: block;
	width: 20px;
	height: 20px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(103deg) brightness(105%) contrast(105%);
}
.melding a {
	color: #fff;
	text-decoration: underline;
}
.melding .close {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.melding .close img {
	display: block;
	width: 20px;
	height: 20px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(103deg) brightness(105%) contrast(105%);
}


@media screen and (max-width: 1300px) {



.melding {
	width: calc(100% - 60px);
}


}