.chat-name {
  cursor: pointer;
  margin: 0;

  span {
    font-size: 14px;
    font-weight: normal;
    color: #303030;
  }

  mat-icon {
    width: 15px;
    height: 20px;
    margin: 0;

    font-size: 15px;
    color: #888;

    visibility: hidden;
  }

  &:hover mat-icon {
    visibility: visible;
  }
}

.details {
  .detail {
    a {
      cursor: pointer;
      color: #888;
    }

    a:hover {
      color: #666;
    }
  }
}

.chat-subscribers {
  display: flex;
  flex: 1;
  align-items: center;
  height: 20px;

  .back-arrow {
    cursor: pointer;
    margin-right: 15px;
    margin-left: -18px;
  }

  .chat-menu-trigger {
    position: relative;
    top: 3px;

    align-items: center;
    justify-content: center;

    width: 18px;
    height: 20px;

    line-height: 1;

    visibility: hidden;

    .mat-icon {
      width: 100%;
      height: 100%;
      font-size: 18px;
      line-height: 1;
    }
  }

  &:hover .chat-menu-trigger {
    visibility: visible;
  }
}

.avatar {
  width: 32px;
  height: 32px;
  margin-right: 10px;

  font-size: 32px;
  line-height: 32px;
  color: #fff;
  text-align: center;

  background: #777;
  border-radius: 50%;
}

.details .from {
  margin-bottom: 4px;
  font-weight: bold;
}

.details .to {
  font-size: 14px;
}

.status {
  width: 300px;
}

.editable-field {
  position: relative;
  display: block;
}

.person-status {
  display: block;

  margin-top: 10px;

  font-size: 14px;
  font-weight: normal;
  color: #999;
}

.p2p-chat-subscribers {
  height: 51px;
}
