.waydev-form-wait-overlay {
	position: absolute;
	inset: 0;
	z-index: 1090;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.72);
	pointer-events: all;
}

.waydev-form-wait-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 18px 22px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.waydev-form-wait-spinner {
	width: 32px;
	height: 32px;
	border: 3px solid #e5e5e5;
	border-top-color: #2e7d32;
	border-radius: 50%;
	animation: waydev-form-spin 0.8s linear infinite;
}

.waydev-form-wait-text {
	font-size: 14px;
	line-height: 1.3;
	color: #1a1a1a;
}

@keyframes waydev-form-spin {
	to {
		transform: rotate(360deg);
	}
}

.waydev-form-waitwindow.bx-core-waitwindow {
	display: none !important;
}
