/**
 * (C)Leanest CSS spinner ever
 */

#cover{
    position:fixed;
    top:0;
    left:0;
    background:rgba(0,0,0,0.6);
    z-index:5;
    width:100%;
    height:100%;
    display:none;
}
.loading {
	border-bottom: 6px solid rgba(255, 255, 255, .1);
	border-left: 6px solid rgba(255, 255, 255, .1);
	border-right: 6px solid rgba(255, 255, 255, .1);
	border-top: 6px solid rgba(255, 255, 255, .4);
	border-radius: 100%;
	height: 50px;
	width: 50px;
	animation: rot .6s infinite linear;
        position:absolute;
        left:50%;
        top:50%;
        margin: -25px 0 0 -25px;
}
#processtext {
        color:#ffffff;
        position:absolute;
        left:50%;
        top:50%;
        margin: 55px 0 0 0;    
}
@keyframes rot {
	from {transform: rotate(0deg);}
	to {transform: rotate(359deg);}
}
