img[data-loaded="true"], [data-loaded="true"]
img {
  animation-name: showLazyImg;
  animation-duration: 0.7s;
  animation-fill-mode: both;
animation-delay: 0.3s;}

@keyframes showLazyImg {
  from { opacity: 0;
         transform: translate(0px,50px);

  }
  to { opacity: 1;
       transform: translate(0px,0px);
  }
}
