/* ── Form box loader overlay ───────────────────────────── */

.form_box {
	position: relative;
}

.form_box__loader {
	position:        absolute;
	inset:           0;
	z-index:         100;
	display:         flex;
	align-items:     center;
	justify-content: center;
	backdrop-filter: blur(5px);
	background:      rgba(255, 255, 255, 0.5);
}

.form_box__spinner {
	width:        44px;
	height:       44px;
	border:       4px solid rgba(194, 5, 22, 0.2);
	border-top-color: #C20516;
	border-radius: 50%;
	animation:    kontakt-spin 0.7s linear infinite;
}

@keyframes kontakt-spin {
	to { transform: rotate(360deg); }
}

/* Hide radio checked style while loader is active */
.form_box--loading .raido_buttons input[type="radio"]:checked + .wpcf7-list-item-label {
	background-color: inherit !important;
	color:            inherit !important;
}
