hi,
when you make a quick search, you have a hightligh option.
by default, it is just Yellow background but you can make it blinking.
Just add in the CSS :
.ew-highlight-search {
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
enjoy