#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loading-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

#loading-bar {
    width: 100%;
    height: 5px;
    background-color: #fff;
    position: relative;
}

#loading-bar:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #209401;
}
#loading-bar:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #209401;
    animation: loading-progress 3s linear infinite;
}

@keyframes loading-progress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}