@charset "utf-8";

#loading {
    background-color: #E1EFFF;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    top: 0;
}

#loading-icon {
    width: 218px;
    height: 218px;
    background: url("./../img/LoadingBg.png") 0 0 no-repeat;
}

#loading-icon img{
    margin: 0 auto;
    margin-top: 83px;
    margin-left: 37px;
}

#loading-scroll{
    margin-top: 27px;
    background: #c8dafe;
    height: 5px;
    position: relative;
}

#loading-scroll div{
    width: 0;
    height: 5px;
    background: #0066FF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: width .5s ease-in-out;
}