.ved_loader_wrapper{
    position: fixed;
    top: 0;
    z-index: 9999;
    width:100%;
    background-color:rgba(0, 0, 0, 0.8);
    min-height:100vh;
    /*display:flex;
    align-items: center;
    justify-content: center;*/
}
.ved_loader_wave {
    display: inline-block;
    position: absolute;
    width: 70px;
    height: 70px;
    left:50%; 
    top:50%; 
    margin-left: -35px;
    margin-top: -35px;
    /*display: flex;
    align-items: center;
    justify-content: center;*/
}
.ved_loader_wave:before, .ved_loader_wave:after {
    position: absolute;
    content: '';
    width: 70px;
    height: 70px;
    -webkit-box-shadow: 0px 0px 0px 4px #ffffff;
    -moz-box-shadow: 0px 0px 0px 4px #ffffff;
    box-shadow: 0px 0px 0px 4px #ffffff;
    opacity: 0;
    border-radius: 50%;
    -webkit-animation: wave 1s infinite;
    -moz-animation: wave 1s infinite;
    animation: wave 1s infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    /*-webkit-transition: none;
    -moz-transition: none;
    transition: none;*/
}
/*.ved_loader_wave:after {
    -webkit-animation-delay: -0.3s;
    -moz-animation-delay: -0.3s;
    animation-delay: -0.3s;
}
@-webkit-keyframes wave {
    0% {    
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}
@-moz-keyframes wave {
    0% {    
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}
@keyframes wave {
    0% {    
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}*/

.ved_loader_wave:after {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
@-webkit-keyframes wave {
    0% { -webkit-transform: scale(0.1); opacity: 1; }
    100% { -webkit-transform: scale(1); opacity: 0; }
}
@-moz-keyframes wave {
    0% { -moz-transform: scale(0.1); opacity: 1; }
    100% { -moz-transform: scale(1); opacity: 0; }
}
@keyframes wave {
    0% { transform: scale(0.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}
