



.elisc_tm_sidebar .author .main::before {
  content: "";
  width: 80px;
  height: 80px;
   background: repeating-linear-gradient(
    white 0%,
    white 7.5px,
    hotpink 7.5px,
    hotpink 15px,
    white 15px,
    white 22.5px,
    hotpink 22.5px,
    hotpink 30px
  );
  
  animation: animate 20s linear infinite;
}




@keyframes animate {
  from {
    background-position: 0;
  }

  to {
    background-position: 0 450px;
  }
}
