#loading{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #FBF0D3 url('img/preloader.gif') no-repeat center;
    
    z-index: 99999;
}

.fade-preloader {
    animation: fadeOut 1s forwards;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #FBF0D3 url('img/preloader.gif') no-repeat center;
    z-index: 99999;
    /*display: none;*/
}

.display-none{
    display: none;
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}