@-o-keyframes highlightBg {
    0% {
        background: #fff
    }
    50% {
        background: #42A5F5
    }
    to {
        background: #fff
    }
}

@-webkit-keyframes highlightBg {
    0% {
        background: #fff
    }
    50% {
        background: #42A5F5
    }
    to {
        background: #fff
    }
}

@keyframes highlightBg {
    0% {
        background: #fff
    }
    50% {
        background: #42A5F5
    }
    to {
        background: #fff
    }
}

.highlight {
    /*     box-shadow: 0 0 0 2px #FF4081; */
    -webkit-animation: highlightBg 1s linear;
    -o-animation: highlightBg 1s linear;
    animation: highlightBg 1s linear;
    -webkit-animation-iteration-count: 2;
    -o-animation-iteration-count: 2;
    animation-iteration-count: 2
}