progress {
  /* Positioning */
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;

  /* Dimensions */
  width: 100%;
  height: .2em;

  /* Reset the apperance */  
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;

  /* Get rid of the default border in Firefox/Opera. */
  border: none;

  /* For Firefox/IE10+ */
  background-color: transparent;

  /* For IE10+, color of the progress bar */
  color: #e62e00;
}

progress::-webkit-progress-bar {
  background-color: transparent;
}

.flat::-webkit-progress-value {
  background-color: #e62e00;
}

.flat::-moz-progress-bar {
  background-color: #e62e00;
}

.progress-container {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  height: .2em;
  display: block;
}

.progress-bar {
  background-color: #e62e00;
  width: 50%;
  display: block;
  height: inherit;
}