/**
 * KB Marketplace Product Label - Blink Animation CSS
 */

@keyframes kbmpl-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.kbmpl-blink {
    animation-name: kbmpl-blink;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Default blink speed is 500ms, can be overridden inline */
.kbmpl-blink {
    animation-duration: 500ms;
}
