.styled progress {
  /* Reset the default appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  width: 250px;
  height: 20px;
  margin-top:8px;
    margin-bottom: 8px;
    border: 1px solid #7ea1d5;

  /* Firefox */
  border: 1px solid #7ea1d5;
  background: #1b1e2d;
}

.styled progress::-webkit-progress-bar {
  background: #1b1e2d;
}

.styled progress::-webkit-progress-value {
  background-color: #7ea1d5;

}

.styled progress::-moz-progress-bar {
  background-color: #7ea1d5;

}