/* progressive image CSS */
.lazy-load {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none;
}

.lazy-load img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border: 0 none;
}

.lazy-load img.preview {
  filter: blur(2vw);
  transform: scale(1.05);
}

.lazy-load img.reveal {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform, opacity;
  animation: lazyLoadReveal 1s ease-out;
}

@keyframes lazyLoadReveal {
	0% { transform: scale(1.05); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}
