#waiting_progress{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-color: rgba(64, 64, 64, 0.45);
    z-index: 9999;
    border-radius: 100%;
    width: 85%;
    aspect-ratio: 1;
}

.progress{
    display: flex;
    align-items: start;
    height: 50%;
    width: 50%;
    animation: rotate 1s linear infinite;
    top: 0;
    position: absolute;
    justify-content: center;
}
.progress:nth-of-type(2n){
    animation-delay: -.33s;


}
.progress:nth-of-type(2n) .progresspoint{
    background-color: #c11b1b;
}
.progress:nth-of-type(3n){
    animation-delay: -.66s;

}
.progress:nth-of-type(3n) .progresspoint{
    background-color: #e40000;
}
.progresspoint{
    width: 20%;
    aspect-ratio: 1;
    border-radius: 100%;
    background-color: #ffffff;
}
#hide_progress{
    margin: auto;
    aspect-ratio: 1;
    position: absolute;
    background-color: white;
    border-radius: 100%;
    width: 70%;
}
#progressNodeTopContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    position: fixed;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    background-color: white;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 20000000;
}
@keyframes rotate{
    from{
        transform: rotate(0deg);
        transform-origin: 50% 100%;
    }
    70%{
        transform: rotate(300deg);
        transform-origin: 50% 100%;
    }
    to{
        transform: rotate(360deg);
        transform-origin: 50% 100%;

    }
}