    body {
	 background: #eef1f3;
}
 @keyframes loader {
	 0% {
		 width: 0;
	}
	 20% {
		 width: 10%;
	}
	 25% {
		 width: 24%;
	}
	 43% {
		 width: 41%;
	}
	 56% {
		 width: 50%;
	}
	 66% {
		 width: 52%;
	}
	 71% {
		 width: 60%;
	}
	 75% {
		 width: 76%;
	}
	 94% {
		 width: 86%;
	}
	 100% {
		 width: 100%;
	}
}
 .progress-bar2 {
	 border-radius: 60px;
	 overflow: hidden;
	 width: 100%;
}
 .progress-bar2 span {
	 display: block;
}
 .bar2 {
	 background: rgba(0, 0, 0, 0.075);
}
 .progress2 {
	 animation: loader 38s ease infinite;
	 background: #75b800;
	 color: #fff;
	 padding: 5px;
	 width: 0;
}
 .progress-bar2 {
	 left: 50%;
	 max-width: 50%;
	 position: absolute;
	 top: 50%;
	 transform: translate3d(-50%, -50%, 0);
}
