.aggregate .item-number {
  width: 25px;
  height: 25px;
  padding: 5px;
  text-align: center;
  border-radius: 50%;
  margin: 2px;
  display: inline-block;
  color: white;
  font-size: medium;
  border: 1px solid rgba(0, 0, 0, 0);
}
.aggregate .item-number.question-status-correct {
  background-color: #7cb518;
  border-color: #7cb518;
}
.aggregate .item-number.question-status-incorrect {
  background-color: #d62828;
  border-color: #d62828;
}
.aggregate .item-number.question-status-partial {
  background-color: #fdb414;
  border-color: #fdb414;
}
.aggregate .item-number.question-status-teacher-graded {
  background-color: #006ba6;
  border-color: #006ba6;
}
.aggregate .item-number.question-status-teacher-graded-correct {
  background-color: #7cb518;
  border-color: #006ba6;
}
.aggregate .item-number.question-status-teacher-graded-incorrect {
  background-color: #d62828;
  border-color: #006ba6;
}
.aggregate .item-number.question-status-teacher-graded-partial {
  background-color: #fdb414;
  border-color: #006ba6;
}
.aggregate .item-number.question-status-not-given {
  color: #212329;
  background-color: none;
}
.aggregate .item-number.question-status-skipped {
  color: #212329;
  border-color: #d62828;
}
