/* === Images Lazy Loading === */
.lazy-loaded.lazy-fadeIn {
  animation: lazyFadeIn 600ms;
}

@keyframes lazyFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

& when (@includeIosTheme) {
  @import url('./lazy-ios.less');
}
& when (@includeMdTheme) {
  @import url('./lazy-md.less');
}
