
/** ADD YOUR AWESOME CODES HERE **/
/**
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*
.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.98);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
 -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #7453fc;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #7453fc;
  border-radius: 50%;
}*/
/*
body {
 background: rgb(199, 199, 199);
 margin: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 1;
}
.js-preloader {
  position: fixed;
  top: 0;
  width: 0;
  height: 0;
  bottom: 0;
  background: #fff;
  z-index: 1000;
  animation: preloader-inner 5s 1 linear;
  animation-fill-mode: forwards;
  }
.preloader-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.preloader-inner .bar {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin: 2px;
  background: #7453fc;
  animation: bar 1s 5 linear;
}
.preloader-inner .bar:nth-child(1){
    animation-delay: 0s;
}
.preloader-inner .bar:nth-child(2){
    animation-delay: 0.25s;
}
.preloader-inner .bar:nth-child(3){
    animation-delay: 0.5s;
}
@keyframes preloader-inner {
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes bar {
    0% {
        transform: scaleY(1) scaleX(0.5);
    }
    50% {
        transform: scaleY(10) scaleX(1);
    }
    100% {
        transform: scaleY(1) scaleX(0.5);
    }
}
*/