#loading-screen{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: #0d0d0d;
    opacity: 1;
    transition: opacity 1s ease;
}
#loading-screen.hidden{
    opacity: 0;
    pointer-events: none;
}
.progress-container{
    width: 150px;
    height: 40px;
    background: #0d0d0d;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}
.wave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    transform: translateY(100%);
    transition: transform 0.1s ease-out;
}
.wave svg{
    width: 200%;
    height: 100%;
    animation: waveMove 2s linear infinite;
}
@keyframes waveMove{
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.percent-text{
    margin-top: 15px;
    font-size: 20px;
    font-weight: 400;
    color: #b3b3b3;
}
@media(max-width:500px){
    .progress-container{
        width: 25%;
    }
}