/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  overflow: hidden;
  background: #fff;
}

#bar {
  width: 0;
  height: 10px;
  background: #eb6608;
  transition: width 0.3s ease-out, height 0.3s ease-out 0.2s;
}

#bar.hidden {
  height: 0;
}

@keyframes load {
  0% {
    opacity: 0.08;
    /*         font-size: 10px; */
    /* 				font-weight: 400; */
    filter: blur(5px);
    letter-spacing: 3px;
  }
  100% {
    /*         opacity: 1; */
    /*         font-size: 12px; */
    /* 				font-weight:600; */
    /* 				filter: blur(0); */
  }
}
.animate {
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: auto;
  /* 	width: 350px; */
  /* 	font-size:26px; */
  animation: load 2s infinite 0s ease-in-out;
  animation-direction: alternate;
}/*# sourceMappingURL=preloader.css.map */