.newLoader {
    width: 25px;
    height: 25px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: flex;
    position: absolute;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    top: 25%;
    right: 45%}
.start-animation {
    position: relative;
    display: inline-block;
    padding: 10px 10px; 
}

/* Main button ID, Change this whenever updating the button via WPBakery */
a#default-btn-cc075059f38b819a9a0a8922d0475e24.start-animation.loading {
    background-color: #764056!important;
}
/* Secondair button ID, Change this whenever updating the button via WPBakery */
a#default-btn-bc0b03260b41b21f30351b26e2b9e0b7.start-animation.loading {
    background-color: #2e2b36!important;
}

.start-animation.loading .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.start-animation.loading span {
    opacity: 0;
} 
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}