.article.user-list .no-users-found {
  text-align: center;
  border: solid 1px #e5e5e5;
  padding: 10px;
}
.article.user-list .list-titles {
  padding: 10px;
  width: 100%;
  font-weight: bold;
  background-color: var(--defaultDarkGrey);
}
.article.user-list .list-item {
  padding: 10px;
  width: 100%;
}
.article.user-list .list-item:nth-child(odd) {
  background-color: var(--defaultDarkGrey);
}
.article.user-list .list-item .email a {
  text-decoration: none;
}
.article.user-list .list-item > div > div.label {
  display: none;
  font-weight: bold;
}
.article.user-list table tr {
  border: 1px solid var(--defaultDarkGrey);
}
.article.user-list table .label {
  display: none;
}
.article.user-list table th {
  padding: 10px 15px;
  -webkit-user-select: none;
  user-select: none;
  font-size: var(--smallerFontSize);
  text-align: left;
}
.article.user-list table th:hover {
  background-color: #eee;
}
.article.user-list table th::after {
  font-family: var(--fa-family-classic);
  content: "\f0dc";
  position: relative;
  left: 5px;
  font-size: 12px;
}
.article.user-list table th:hover {
  cursor: pointer;
}
.article.user-list table tbody tr:hover {
  background-color: #eee;
}
.article.user-list table td {
  padding: 15px;
  font-size: var(--smallerFontSize);
}
.article.user-list table a {
  color: black;
}
.article.user-list table a:hover {
  color: var(--defaultBlue);
}
.article.user-list .none {
  display: none;
}

/* Grade A */
/* Grade B */
/* Grade C */
@media (max-width: 767px) {
  .article.user-list table thead th {
    display: none;
  }
  .article.user-list table .label {
    display: inline-block;
    font-weight: bold;
    min-width: 50%;
  }
  .article.user-list table .value {
    min-width: 50%;
    float: none;
    display: inline-block;
  }
  .article.user-list table td {
    padding: 10px 20px;
  }
  .article.user-list table td:nth-child(-n+2) {
    padding-top: 20px;
  }
  .article.user-list table td:nth-last-of-type(-n + 2) {
    padding-bottom: 20px;
  }
}
/* Grade D */
@media (max-width: 479px) {
  .article.user-list table .label,
  .article.user-list table .value {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .article.user-list table td:nth-child(-n+2), .article.user-list table td:nth-last-of-type(-n + 2) {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .article.user-list table td:first-child {
    padding-top: 20px;
  }
  .article.user-list table td:last-child {
    padding-bottom: 20px;
  }
}

/*# sourceMappingURL=userList.css.map */