.fyndiq_content {
  position: relative;
}
.fyndiq_content:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place the pseudo element right under the content */
  top: 0;
  left: 0;
  /*background: linear-gradient(to top, orange 100%, transparent 10%);*/
  animation-name: highlight;
  animation-duration: 0.75s;
  animation-iteration-count: infinite;
  animation-direction: alternate; /* Make the animation run back and forth */

}

span.fyndiq_content_main{
	/*background-color: #000;*/
	color: #000;
	padding: 5px;
}
a.fyndiq_content{
	color:#FF0000;
  /*text-decoration: none;*/
  font-weight: bold
	
}
.fyndyq_content_holder p{
	margin: 20px;
}

@keyframes highlight {
  0% {
    width: 0;
    opacity: 0;
  }

  50% {
    width: 100%;
    opacity: 1;
  }

}