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