
/*
 * Wait Panel
 */

#WaitPanel{
    z-index:100000;
    position: fixed;
    top: 0px;
    left: 0px;
    width:100%;
    height: 100vh;
    background-color:#e0e0e0;
    opacity: 0.7;
    /*display:none;*/
}

.WaitPanelCircle {
    position:absolute;
    margin-top: 25%;
    margin-left: 45%;
}

@keyframes waitCircleTransition {
    0% {
        r: 5%;
        fill:  #333;
    }
    50% {
        r: 50%;
        fill:  #ff8600;
    }
        100% {
        r: 5%;
        fill:  #333;
    }
}

.waitCircleAnimation {
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-name: waitCircleTransition;
}