/*-------------------------
    ## Preloader Css
---------------------------*/
/* Add your other styles here */
.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader img {
  width: 100%;
  height: auto;
  animation: loaderAnimation 0.28s linear infinite;
}

.loading-text {
  font-size: 18px;
  margin-top: 10px;
}

@keyframes loaderAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}/*# sourceMappingURL=preloader.css.map */