
.form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--theme-primary-color);
	border-top-color: #eee;
	animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Subscriber Form  */
.already-subscribed {
	display: none;
	color: #fff;
	background: var(--theme-primary-color);
	text-align: center;
	padding: 8px;
	font-weight: 600;
	border-radius: 10px;
}

.error-subscribed {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: center;
	padding: 8px;
	font-weight: 600;
	border-radius: 10px;
}

.successfull-subscribed {
	display: none;
	color: #fff;
	background: var(--bs-green);
	text-align: center;
	padding: 8px;
	font-weight: 600;
	border-radius: 10px;
}