.c-consultatiewidget{
    z-index: 20 !important;
}
.c-consultatiewidget__bg {
    animation: bg-rotate 10s linear infinite;
}

@keyframes bg-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}