/* LOADER */
.loader
{
	position:fixed;
	top:0;
	left:0;
	bottom:0;
	right:0;
	width:100%;
	height:100%;
    z-index:9999;
	background-color:#151515;
    cursor:wait;
}
.loaded
{
    height:5px;
		position:fixed;
		top:50%;
		left:50%;
		transform:translate(-50%, -50%);
	width:5%;
	background:linear-gradient(90deg, #DA3958 0%, #DA4739 100%);
	animation-duration: 3s;
	animation-name: loader;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
