.UserProfileBlock {
  font-size: 13px;
  width: 220px;
  padding: 10px;
  border-radius: 3px;
}

.UserProfileBlock[data-hidden="true"] {
  opacity: 0.3;
}

.UserProfileBlock__action {
  color: #6b727c;
  margin-bottom: 10px;
}

.UserProfileBlock__action:last-child {
  margin-bottom: 0;
}

.UserProfileBlock__user {
  display: flex;
}

.UserProfileBlock__user-photo {
  width: 32px;
  height: 32px;
  background-size: cover;
  background-position: 50% 50%;
  margin-right: 10px;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
}

.UserProfileBlock__user-content {
  flex-grow: 2;
}

.UserProfileBlock__user-name {
  word-wrap: break-word;
  overflow: hidden;
}

.UserProfileBlock__user-location {
  color: #6b727c;
}

.UserProfileBlock[data-size="large"] {
  width: 300px;
  padding: 0;
}

.UserProfileBlock[data-size="large"] .UserProfileBlock__user-photo {
  width: 48px;
  height: 48px;
}

.UserProfileBlock[data-size="large"] .UserProfileBlock__user-name {
  font-size: 16px;
  margin-top: 5px;
}
