.fg-social-user-item {
  overflow: hidden;
  width: 380px;

  margin-bottom: 10px;

  border: 1px solid;
  border-radius: 5px;
  cursor: pointer;

  font-family: 'AzoSans-Medium';
  font-size: 12.5px;

  transition: border-color .4s ease;
}

.fg-social-user-item--empty {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 150px;
}

.fg-social-user-item-empty-text {
  color: #030303;
  font-size: 12.5px;
}

.fg-social-user-profile-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px;
}

.fg-social-user-profile-info {
  display: flex;
  align-items: center;
  overflow: hidden;

  width: 100%;
}

.fg-social-user-avatar-img {
  width: 35px;
  min-width: 35px;
  height: 35px;

  border: 1px solid;
  border-radius: 50%;
}

.fg-social-user-name-container {
  overflow: hidden;

  width: 100%;
}

.fg-social-user-name-container:after {
  right: 0;
}

.fg-social-user-name {
  margin: 0 15px 0;

  font-family: 'AzoSans-Regular';
  font-size: 15px;
}

.fg-social-user-following-status-btn {
  width: 100px;
  height: 35px;

  border: 1.5px solid rgba(234, 76, 137, .5);
  border-radius: 5px;

  color: #EA4C89;
  background: none;
  cursor: pointer;

  transition: all .4s ease;
}

.fg-social-user-following-status-btn:hover {
  border-color: #EA4C89;
  background-color: #EA4C89;
  color: #FFFFFF;
}

.fg-social-user-following-status-btn--followed {
  border-color: rgba(8, 181, 142, .5);
  color: #08b58e;

  transition: all .4s ease;
}

.fg-social-user-following-status-btn--followed:hover {
  border-color: #d84a38;
  background-color: #d84a38;
  color: #FFFFFF;
}

.fg-social-user-figure-item {
  text-align: center;
}

.fg-social-user-stats-info-container {
  display: flex;
  justify-content: center;

  padding: 20px 0;
}

.fg-social-user-stats-info-item {
  margin: 0;
}

.fg-social-user-stats-info-item-count {
  margin-left: 5px;
}

@media screen and (max-width: 1024px) {
  .fg-social-user-following-status-btn {
    display: none;
  }

  .fg-social-user-name {
    font-size: 11px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fg-social-user-item {
    width: 250px;
  }

  .fg-social-user-figure-img {
    width: 250px;
  }
}

@media screen and (max-width: 767px) {
  .fg-social-user-item {
    width: 100%;
  }

  .fg-social-user-figure-img {
    width: 100%;
  }
}
