
.loader {
   background: rgba(0,0,0,.85);
  width: 100%;
  top: 0;
  z-index: 999999;
  position: absolute;
  left: 0;
  height: 100%;
  
}

.loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto; 
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;

}



.loader-progress > div {
  background-color: #F7941E;
  height: 100%;
  width: 6px;
  display: inline-block;
  
  -webkit-animation: td-stretchdelay 1.2s infinite ease-in-out;
  animation: td-stretchdelay 1.2s infinite ease-in-out;
}

.loader-progress .smt2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.loader-progress .smt3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.loader-progress .smt4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.loader-progress .smt5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.text-loader{
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto; 
  width: 1000px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  color: white;
  font-weight: bold;
}

@-webkit-keyframes td-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes td-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}




