.list-group {
  a.list-group-item,
  &.list-group-item-action {
    &.active {
      &:hover {
        background: $list-group-active-bg-hover;
      }
    }
  }

  //.list-group-item-warning2 {
  //  background-color: rgba(theme-color("warning"), 0.35);
  //  border-left: 5px solid theme-color("warning");
  //}
}

.list-group-item {
  &.list-group-item-success {
    background-color: rgba(theme-color("success"), 0.35);
    border-left: 5px solid theme-color("success");
    color: $white;
  }
  &.list-group-item-info {
    background-color: rgba(theme-color("info"), 0.35);
    border-left: 5px solid theme-color("info");
    color: $white;
  }
  &.list-group-item-warning {
    background-color: rgba(theme-color("warning"), 0.35);
    border-left: 5px solid theme-color("warning");
    color: $white;
  }
  &.list-group-item-danger {
    background-color: rgba(theme-color("danger"), 0.35);
    border-left: 5px solid theme-color("danger");
    color: $white;
  }
}