#emj-subscriber-form {
	width: 100%;
	max-width: 800px;
	display: inline-block;
	position: relative;
}

.spinner-wrapper {
	position: relative;
    display: block;
    width: 162px;
    height: 18px;
    text-align: center;
    line-height: 35px;
}

.spinner {
	border: 2px solid rgba(255,255,51,1);
	width: 20px;
	height: 20px;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -10px;
	margin-top: -10px;
	border-radius: 50%;
	border-right: 2px solid rgba(255,255,51,.15);
	text-align: center;
	animation-name: spin;
	animation-duration: 900ms;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(.53,.21,.29,.67);
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  /*50% {width:24px;height:24px} /*shrinking effect*/
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { -webkit-transform: rotate(0deg);}
 /*50% {width:24px;height:24px} /*shrinking effect*/
  100% { -webkit-transform: rotate(360deg); }
}