@keyframes product-highlight {
    0% {
        background: rgb(136, 223, 255);
    }
    100% {
        background: none;
    }
}

.product-highlight {
    animation: product-highlight 1s;
}