/*body.royal_preloader {
    background: none;
    visibility: hidden;  
    }*/
.loader_bg{
    position: fixed;
    z-index: 999999;
    background-color: white;
    background-image: url('../img/load.gif');
	background-size: 450px 250px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
    padding-left: 50px;
    padding-right: 50px;
	text-align:center;
    width: 100%;
    height: 100%;
   
}
.loader:before{
    animation-delay: .2s;
}
@keyframes loader{
    0%{
        transform: scale(0);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        transform: scale(1);
        opacity: 0;
    }
}
