.wcvat-registration-status {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-top: 9px;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.4;
}

.wcvat-registration-status__dot {
	width: 10px;
	height: 10px;
	margin-top: 4px;
	border: 2px solid rgba(255, 255, 255, .45);
	border-radius: 50%;
	background: transparent;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
	flex: 0 0 auto;
}

.wcvat-registration-status.is-hint {
	color: rgba(255, 255, 255, .74);
}

.wcvat-registration-status.is-pending {
	color: #ffd18a;
}

.wcvat-registration-status.is-pending .wcvat-registration-status__dot {
	border-color: #ffb347;
	border-top-color: transparent;
	animation: wcvat-registration-spin .8s linear infinite;
}

.wcvat-registration-status.is-valid {
	color: #8ee6b2;
}

.wcvat-registration-status.is-valid .wcvat-registration-status__dot {
	border-color: #22c55e;
	background: #22c55e;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, .16);
}

.wcvat-registration-status.is-invalid,
.wcvat-registration-status.is-error {
	color: #ff9d9d;
}

.wcvat-registration-status.is-invalid .wcvat-registration-status__dot,
.wcvat-registration-status.is-error .wcvat-registration-status__dot {
	border-color: #ef4444;
	background: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, .16);
}

#billing_vat.wcvat-valid {
	border-color: #22c55e !important;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, .14) !important;
}

#billing_vat.wcvat-invalid,
#billing_vat.wcvat-error {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, .14) !important;
}

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