.vc_loader {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}
.vc_loader .vc_circle{
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -30px;
    margin-top: -30px;
    border-radius: 100%;
    border: 2px solid rgba(97, 187, 69, 0.2);
    border-top-color: #61bb45;
    animation: spin 1s infinite linear;
}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}