.progressContainer {
  left:0;
  width: 100%;
  height: 5px;
  margin-bottom: 0px;
  position: fixed;
  bottom: 0px;
  overflow: hidden;
  background-color: white;
  content: "";
	display: table;
  table-layout: fixed;
  z-index: 20;
}

.progressBar {
  width: 0%;
  float: left;
  height: 100%;
  z-index: 30;
  max-width: 100%;
  background-color:#FD1B49;
  -webkit-transition: width .25s ease;
  -o-transition: width .25s ease;
  transition: width .25s ease;
}

@media only screen and (max-width: 480px) {
  .progressContainer {
    bottom: 52px;
  }
}