@-webkit-keyframes moving-gradient {
   0% { background-position: left bottom; }
   100% { background-position: right bottom; }
}
.loadingBarContainer{
   width: 100%;
   border:2px solid rgb(110, 110, 110);
   border-radius: 7px;
}
.loadingBar{
   height: 16px;
   background: -webkit-linear-gradient(
       left,
       #fe8911 30%,
       #fdf9ef 80%,
       #fe8911 100%
   ) repeat;
   -webkit-background-size: 50% 100%;
   -webkit-animation-name: moving-gradient;
   -webkit-animation-duration: 0.5s;
   -webkit-animation-iteration-count: infinite;
   -webkit-animation-timing-function: linear;
   
}