.tm-toolbar-default {
	background: linear-gradient(140deg,rgba(206, 201, 198, 1) 0%, rgba(247, 245, 242, 1) 100%);
}

.rand {
	position: relative;
	border: 5px solid #1e5b5c;
	border-radius: 20px;
	overflow: hidden;
	display: block;
}

.glow {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	display: block;
}

/* overlay binnen de rand */
.glow::after {
	content: "";
	position: absolute;
	inset: 3px; /* even groot als de border */
	border-radius: calc(20px - 5px); /* binnenradius zodat het mooi aansluit */
	pointer-events: none;
	z-index: 5;
	background: radial-gradient(
		circle at center,
		rgba(255,255,255,0) 55%,
		rgba(255,255,255,0.9) 100%
	);
	mix-blend-mode: screen;
}

.label {
	position: relative;
	width: fit-content;
	padding: 10px 40px;
	border-radius: 50%; /* ovaal */
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 32px;
	color: #fff;
	font-weight: bold;
}

.gform_wrapper {
	max-width: 1000px;
}