.progressContainer.notUsed{
    position: absolute;
    z-index: 100000;
    height: 20px; 
    width: 100%;
    top: 50%;
    text-align: center;
}
.progressContainer span.notUsed{
    color: orangered;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    text-shadow: 0 0 2px black !important;
}
.progressContainer{
    position: absolute;
    z-index: 100000;
    height: 60px;
    width: 50%;
    top: 50%;
    text-align: center;
    left: 25%;
    background: rgba(0,0,0,.3);
	padding: 8px;
}
.progressContainer span{
    color: white;
    font-weight: 600;
    font-style: normal;
    text-shadow: 1px 1px 3px black !important;
}

progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  
  /* Get rid of default border in Firefox. */
  border: none;
  
  /* Dimensions */
  width: 100%;
  height: 20px;
}

progress[value]::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

progress[value]::-webkit-progress-value {
  background-image:
	   -webkit-linear-gradient(-45deg, 
	                           transparent 33%, rgba(0, 0, 0, .1) 33%, 
	                           rgba(0,0, 0, .1) 66%, transparent 66%),
	   -webkit-linear-gradient(top, 
	                           rgba(255, 255, 255, .25), 
	                           rgba(0, 0, 0, .25)),
	   -webkit-linear-gradient(left, #0c95c7, #ff6300);

    border-radius: 2px; 
    background-size: 35px 20px, 100% 100%, 100% 100%;
}

progress[value]::-moz-progress-bar { 
  background-image:
    -moz-linear-gradient(
      135deg, 
      transparent 33%, 
      rgba(0, 0, 0, 0.1) 33%, 
      rgba(0, 0, 0, 0.1) 66%, 
      transparent 66% 
    ),
    -moz-linear-gradient(
      top, 
      rgba(255, 255, 255, 0.25), 
      rgba(0, 0, 0, 0.25)
    ),
    -moz-linear-gradient(left, #0c95c7, #ff6300);

  border-radius: 2px; 
  background-size: 35px 20px, 100% 100%, 100% 100%; 
}