/* dialogs */

.m-dialog-card {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
}

.img-user {
  margin-right: 20px;
  text-align: center;
}

.img-user .img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}

.info-card {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}

.unfo-user {
  width: 80%;
  overflow: hidden;
}

.mobile .unfo-user {
  max-width: 250px;
  overflow: hidden;
}

.name-user {
  font-size: 14px;
  font-weight: 600;
  color: #4c567d;
}

.message-user {
  font-size: 14px;
  color: #979eab;
  white-space: nowrap;
}

.data-message {
  text-align: center;
}

.data-message .date {
  font-size: 10px;
  color: #979eab;
}
.data-message .new-message {
  font-size: 10px;
  color: #979eab;
}

.add-new-message {
  background-color: #ff7e7f;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 50%;
  color: #fff;
}

.comp .info-card
{
  width: 70%;
}

.comp .m-dialog-card
{
  padding: 20px 10px;
  margin: 0;
}
.comp .m-dialog-card:hover
{
  background-color: white;
}
.comp .data-message {
  height: 100%;
}

@media  (max-width: 320px) {
  .info-card {
    max-width: 210px;
  }
}

