/* LOADER CONTAINER */
#dzPreloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

/* ICON */
.loader-logo {
  width: 120px;
  height: auto;
  animation: zoomPulse 1.4s ease-in-out infinite;
}

/* ZOOM IN - ZOOM OUT ANIMATION */
@keyframes zoomPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
