/* WPB */
.hide_in_vc_editor {
    display: none!important;
}

/* Animated gradient */
body .animated-gradient {
    background-size: 200% 200%;
    animation: gradient 12s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
