.default-avatar {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.user-list {
  .search-container {
    right: 10px;
  }

  .user-list-item {
    border-bottom: 1px solid #eee;

    &:last-child {
      border-bottom: 0;
    }

    &:hover {
      background-color: #edeff0;
    }

    ._item {
      padding: 10px;
      display: inline-block;
      width: 100%;
    }

    a {
      color: #333;
      text-decoration: none;

      &:hover {
        background-color: transparent;
        color: #333;
      }
    }
  }
}

// Reminder
.more-actions {
  .dots {
    padding: 0 8px;
    cursor: pointer;
    border-radius: 4px;
    display: inherit;

    i {
      color: #8c8c8c;
    }

    &:hover, &:focus {
      i {
        color: #666;
      }
    }
  }
}

// Tags
.tags {
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;

  li {
    float: left;
  }
}

.tag {
  background: #eee;
  border-radius: 3px;
  color: #999;
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding: 0 20px 0 23px;
  position: relative;
  margin: 0 10px 10px 0;
  text-decoration: none;
  -webkit-transition: color 0.2s;

  &::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 8px;
  }

  &:hover {
    background-color: #cde69c;
    color: #638421;
  }
}

.edit-tag-link {
  height: 24px;
  line-height: 24px;
}

.list-group-item-action {
  i {
    margin-top: 4px;
  }
}

.social-icons {
    text-align: center;
    display: inline-block;
}
