#recommendation .st0 {
    stroke-dasharray: 2 4;
    animation: 500ms shine-out ease-out 1 forwards, 750ms 500ms restore ease-in-out forwards;
}

@keyframes shine-out {
  0% {
    stroke-dashoffset: -2;
    opacity: 1;
  }
  50%{
      opacity: 1;
  }
  100% {
    stroke-dashoffset: 2;
    opacity:0
  }
}
@keyframes restore {
  0% {
    stroke-dashoffset: -2;
    opacity: 0;
  }
  50%{
      opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity:1
  }
}