.uiless-member {
  &-subject-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 52px;
    padding: 0 8px;

    &:after {
      opacity: 0;
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background-color: $gray-01;
      z-index: -1;
      border-radius: 4px;
    }

    &-checkbox {
      margin-right: 12px;
    }
    &-avatar {
      margin-right: 8px;
    }
    &-text {
      flex: 1;
    }

    &:hover {
      cursor: pointer;
      &:after {
        opacity: 1;
      }
    }
  }
  &-subject-role {
    height: 36px;
  }
}
