
.alavibohra-loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 15000;
  overflow: hidden;
}

.alavibohra-loader .loader {
  width: 150px;
  height: 150px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -75px 0 0 -75px;
  background-size: 85%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: 2s ease;
  animation: 2s ease;
  -webkit-animation: power 5s linear infinite;
  animation: power 5s linear infinite;
}
.alavibohra-loader .loader-text {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left:0px;
  margin-top:80px;
	transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

.alavibohra-loader .loader-text p {
  margin-bottom: 0px;
  color: #000;
  font-size: 20px;
}

@-webkit-keyframes power {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.75;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes power {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.75;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
