.e2u-subscribers-form-wrapper {
	width: 100%;
	height: 60px;
	overflow: hidden;
	position: relative;
}
.subscribe-success-msg {
	width: 100%; 
	overflow: hidden; 
	color: #2ecc71; 
	font-weight: bold;
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
}
.e2u-subscribe-form {position: relative;}
.disablingform {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.75);
	display: none;
}
.disablingform:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translate(-50%, -0%);
	width: 30px;
	height: 30px;
	border: 3px solid #ffffff;
	border-top-color: transparent;
	border-radius: 100%;
	animation: 1s spinnginball infinite;
}
@keyframes spinnginball {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
}