.progress {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 3px !important;

  background: rgb(255, 255, 255, 0);
  border-radius: 0;
  box-shadow: none;
  padding: 0px;
  margin: 0;
  z-index: 300;
}
.progress-bar {
  height: 3px !important;
  background-color: White;
  position: relative;
  animation: animate-positive 10s 0s infinite;
  z-index: 300;
}
@media (max-width: 769px) {
  progress {
    height: 2px !important;
  }
  .progress-bar {
    height: 2px !important;
  }
}
@-webkit-keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
