.loader-div {
  width: 100%;
  height: 100vh;
  background:#fffaf5;
  position: absolute;
  z-index: 5;
  overflow: hidden;
}
#loading-wrapper {
  width: 200px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom:0;
  display: inline-grid;
  margin: auto;
  text-align: center;
}
.loading-text{
	color:#fff;
	letter-spacing: 4px;
	padding: 4px;
}
#border {
  border: 3px solid #fff;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  position: relative;
  
  padding: 4px 3px;
}

#whitespace {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

#line {
  position: absolute;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  background-color: #fff;
  -webkit-animation: slide 5s steps(40) infinite;
  -moz-animation: slide 5s steps(40) infinite;
  animation: slide 5s steps(40) infinite;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  
  100% {
    left: 100%;
  }
}

@-moz-keyframes slide {
  0% {
    left: -100%;
  }
  
  100% {
    left: 100%;
  }
}

@-webkit-keyframes slide {
  0% {
    left: -100%;
  }
  
  100% {
    left: 100%;
  }
}

#progress {
  position:fixed;
  z-index:2147483647;
  top:0;
  left:-6px;
  width:0%;
  height:5px;
  background:#721c54;
  -moz-border-radius:1px;
  -webkit-border-radius:1px;
  border-radius:1px;
  -moz-transition:width 500ms ease-out,opacity 400ms linear;
  -ms-transition:width 500ms ease-out,opacity 400ms linear;
  -o-transition:width 500ms ease-out,opacity 400ms linear;
  -webkit-transition:width 500ms ease-out,opacity 400ms linear;
  transition:width 500ms ease-out,opacity 400ms linear
}
#progress.done {
  opacity:0
}
#progress dd,#progress dt {
  position:absolute;
  top:0;
  height:5px;
  -moz-box-shadow:#721c54 1px 0 6px 1px;
  -ms-box-shadow:#721c54 1px 0 6px 1px;
  -webkit-box-shadow:#721c54 1px 0 6px 1px;
  box-shadow:#721c54 1px 0 6px 1px;
  -moz-border-radius:100%;
  -webkit-border-radius:100%;
  border-radius:100%
}
#progress dd {
  opacity:1;
  width:20px;
  right:0;
  clip:rect(-6px,22px,14px,10px)
}
#progress dt {
  opacity:1;
  width:180px;
  right:-80px;
  clip:rect(-6px,90px,14px,-6px)
}
@-moz-keyframes pulse {
  30% {
    opacity:1
  }
  60% {
    opacity:0
  }
  100% {
    opacity:1
  }
}
@-ms-keyframes pulse {
  30% {
    opacity:.6
  }
  60% {
    opacity:0
  }
  100% {
    opacity:.6
  }
}
@-o-keyframes pulse {
  30% {
    opacity:1
  }
  60% {
    opacity:0
  }
  100% {
    opacity:1
  }
}
@-webkit-keyframes pulse {
  30% {
    opacity:.6
  }
  60% {
    opacity:0
  }
  100% {
    opacity:.6
  }
}
@keyframes pulse {
  30% {
    opacity:1
  }
  60% {
    opacity:0
  }
  100% {
    opacity:1
  }
}
#progress.waiting dd,#progress.waiting dt {
  -moz-animation:pulse 2s ease-out 0s infinite;
  -ms-animation:pulse 2s ease-out 0s infinite;
  -o-animation:pulse 2s ease-out 0s infinite;
  -webkit-animation:pulse 2s ease-out 0s infinite;
  animation:pulse 2s ease-out 0s infinite
}