#loading{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgb(255, 255, 255) url('img/loader.gif') no-repeat center;
    
    z-index: 99999;
}

.fade-preloader {
    animation: fadeOut 1s forwards;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ebedfa url('img/loader.gif') no-repeat center;
    z-index: 99999;
    /*display: none;*/
}

.display-none{
    display: none;
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}