/**
 * Module start/resume/locked icons.
 */
img.voyager-module-start-link {
  background-image: url(../images/module_launch_icons/play-circle.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  padding: 0;
  display: inline;
  margin-right: 4px;
  margin-top: -1px;
}

img.voyager-module-locked-link {
  background-image: url(../images/module_launch_icons/lock.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  padding: 0;
  display: inline;
  margin-right: 4px;
  margin-top: -1px;
}

img.voyager-module-inprogress-link {
  background-image: url(../images/module_launch_icons/play-circle.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  padding: 0;
  display: inline;
  margin-right: 4px;
  margin-top: -1px;
}

img.voyager-module-completed-link {
  background-image: url(../images/module_launch_icons/check-circle.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  padding: 0;
  display: inline;
  margin-right: 4px;
  margin-top: -1px;
}

div.module-status {
  display: inline-block;
}

div.module-status-circle {
  color: transparent;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  margin-left: auto;
  margin-top: 3px;
  margin-right: 4px;
  text-align: center;
  width: 24px;
  height: 24px;
  float: left;
}

div.module-status-circle.not_started {
  background: #e0e0e0;
}

div.module-status-circle.inprogress {
  background: #ffe199;
}

div.module-status-circle.completed {
  background: #88c0b1;
}

div.module-status-text {
  float: left;
}
