/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 30 2026 | 08:39:42 */
/* custom menu badge bouncing vacature*/

.menu-badge {
    font-size: 12px;
    margin-left: 4px;
    position: relative;
    top: -10px;
    margin-bottom: 13px;
    color: #ffffff;
    background-color: #E95A0C;
    padding: 3px 4px;
    border-radius: 3px;
}


.badge-bounce {
    animation: bouncing .8s cubic-bezier(0.1, 0.05, 0.05, 1) 0s infinite alternate both;
}

@keyframes bouncing {
    0% {
        top: -6px
    }

    100% {
        top: -10px
    }
}