.UserProfil{
  width: 45%;
  display: inline-block;
  padding: 10px;
  vertical-align: top;
}
@media screen and (max-width: 1000px) {
  .UserProfil{
    width: 95%;
    display: block;
  }
}
.dauthPanel{
  width: 100%;
  text-align: center;
  margin-top : 20px;
  overflow: hidden;
}
.visible{
  height: 520px;
}
 .invisible{
  height: 0;
}
.avatar{
  width: 94px;
  height: 94px;
  margin: 10px;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: top;
  margin: auto;
  position: relative;
}
.avatar img{
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.avatarEditBtn{
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  opacity: 0.7;
  background-color: var(--mainTextColor);
  color: var(--mainTextColorDark);
  display: none;
}
.avatar:hover .avatarEditBtn{
  display: none !important;
}
.avatarEditBtn i{
  font-size: 50px;
  line-height: 94px;
}
.listUsers{
  width: 100%;
  border-collapse: collapse;
}
.listUsers tr{
  border-bottom: 1px solid var(--mainTextColorDark);
  cursor: default;
  transition: 0.2s ease all;
}
.listUsers tr:last-child{
  border: 0;
}
.listUsers tr:hover{
  background-color: var(--mainBgColor);
}
.listUsers td{
  padding: 20px;
}
.listUsers .avatar{
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1000px) {
  .notDisplay{
    display: none;
  }
}
