#asan-splash{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:#ffffff;

    z-index:999999;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:opacity .8s ease;

}

#asan-splash.fade-out{

    opacity:0;

    visibility:hidden;

}

.asan-splash-box{

    text-align:center;

    max-width:700px;

}

.asan-splash-logo{

    max-height:140px;

    margin-bottom:25px;

}

.asan-loader{

    width:320px;

    height:10px;

    background:#ddd;

    border-radius:20px;

    margin:30px auto;

    overflow:hidden;

}

.asan-loader-bar{

    width:0;

    height:100%;

    background:#006400;

    animation:asanLoading 2.3s linear forwards;

}

@keyframes asanLoading{

    from{

        width:0;

    }

    to{

        width:100%;

    }

}