.student-line {
  display: table;
}

.student-badge {
  display: table-cell;
  min-width: 1em;
}

.student-info {
  display: table-cell;
}


.throb {
  -webkit-animation: color_change 1.5s ease-in-out infinite alternate;
  -moz-animation: color_change 1.5s ease-in-out infinite alternate;
  -ms-animation: color_change 1.5s ease-in-out infinite alternate;
  -o-animation: color_change 1.5s ease-in-out infinite alternate;
  animation: color_change 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes color_change {
  to { color: #3d9e00; }
  from { color: yellow; }
}
@-moz-keyframes color_change {
  to { color: #3d9e00; }
  from { color: yellow; }
}
@-ms-keyframes color_change {
  to { color: #3d9e00; }
  from { color: yellow; }
}
@-o-keyframes color_change {
  to { color: #3d9e00; }
  from { color: yellow; }
}
@keyframes color_change {
  to { color: #3d9e00; }
  from { color: yellow; }
}
