#splash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./images/background.png) no-repeat bottom;
  background-size: contain;
}

.progress-bar {
  position: relative;
  top: 80%;
  left: 50%;
  overflow: hidden;
  /* width: 420px; */
  width: 60%;
  /* height: 44px; */
  height: 23px;
  background: url('./images/progress-bg.png') no-repeat;
  background-size: 100% 100%;
  border-radius: 25px;
  transform: translate(-50%);
}

.progress-bar-progress {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  width: 100%;
  height: 100%;
  background: url('./images/progress.png') no-repeat center;
  background-size: 97% 70%;
  transition: left 0.4s ease-in-out;
}

.progress-bar-up {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: url('./images/progress-up.png') no-repeat;
  background-size: 100% 100%;       
  border-radius: 25px;
}

.stripes span {
  background-size: 30px 30px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                      transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                      transparent 75%, transparent);            
  
  animation: animate-stripes 1s linear infinite;             
}

@keyframes animate-stripes {
  0% {background-position: 0 0;} 100% {background-position: 60px 0;}
}
