.lazier {
  position: relative;
  overflow: hidden;
  background-size: 50% !important;
  background-color: #f0f0f0;
  background-repeat: repeat !important;
  background-position: center center;

  > .lazier-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow: hidden;
    margin: auto;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    animation: lazier-fade .75s forwards;
  }
}

@keyframes lazier-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}