.status-preloader {
	width: 120px;
	height: 28px;
	background: linear-gradient(90deg,#1e7be0,#fff);
	background-size: 200% 200%;
	animation: gradientMove 3s ease infinite;
        border-radius: 5px;
        opacity: 0.6;
}

@keyframes gradientMove {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}