﻿.flash-on-profit {
    animation: flash 0.7s ease-in-out;
}

@keyframes flash {
    0% {
        background-color: #d1e7dd;
    }

    50% {
        background-color: #b5dfc4;
    }

    100% {
        background-color: #d1e7dd;
    }
}
