@keyframes highlight {
    0% {
        background: #fff2a8;
        opacity: 0.1;
    }
    100% {
        background: #ffffff;
        opacity: 1;
    }
}

.dc__flash {
    animation: highlight 0.250s;
}