.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 160px 0 0;
}

.container-members {
  width: 1100px;
  flex: none;
  display: flex;
  flex-direction: column;
}

.members-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.heading-members {
  font-size: 26px;
  font-weight: 600;
  color: #000;
}

.link-tag {
  padding: 10px;
  border: 1px solid #eee;
  color: #000;
  font-size: 12px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
}

.parent-members {
  height: 100%;
  display: block;
}

.members-parent-div {
  margin-top: 20px;
}

.member-child {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #cad4de26;
  box-shadow: 1px 2px 10px #00000017;
}

.member-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-img-data {
  display: flex;
  align-items: center;
}

.profile-img {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
}

.profile-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.profile-info-text {
  margin-left: 15px;
}

.profile-name {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.profile-personal-info {
  font-size: 12px;
  color: #000000a1;
  display: inline-block;
  font-weight: 600;
}

.text-dark {
  color: #000;
}

.dot {
  font-size: 45px;
  line-height: 0;
}

.text-dark-light {
  color: #000000a1;
}

.text-purple {
  /* color: #3f51b5; */
  /* color: #607D8B; */
  color: #f44336;
  /* color: #35a33a; */
}

.profile-button-data {
  display: flex;
  align-items: center;
}

.btn-profile {
  border: 0;
  outline: 0;
  height: 40px;
  width: 40px;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 50%;
}


.btn-profile i {
  /* margin-right: 8px; */
  font-size: 14px;
}

.btn-profile:hover {
  background-color: #000c;
}

/* no notifications error design */
.no-notifications-error {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  height: 100%;
  text-align: center;
  padding: 50px;
  border-radius: 20px;
  display: none;
}

.image img {
  width: 260px;
  margin-bottom: 10px;
}

.error-h3 {
  font-size: 18px;
  color: #000000b8;
  font-weight: 700;
  margin: 4px 0 8px;
}

.error-p {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.6;
  color: #000000b8;
}

/* responsive design  */
@media only screen and (max-width: 1600px) {
  .container-members {
    width: 1000px;
  }
}

/* responsive design  */
@media only screen and (max-width: 1400px) {
  .container-members {
    width: 900px;
  }
}

/* responsive design  */
@media only screen and (max-width: 1220px) {
  .container-members {
    width: 800px;
  }
}

/* responsive design  */
@media only screen and (max-width: 920px) {
  .hero {
    padding: 180px 0 0;
  }

  .container-members {
    width: 95%;
  }
}

/* responsive design  */
@media only screen and (max-width:620px) {
  .heading-members {
    font-size: 20px;
  }

  .no-notifications-error {
    margin-top: 40px;
  }

  .member-data {
    flex-direction: column;
  }

  .profile-img-data {
    width: 100%;
  }

  .profile-button-data {
    width: 100%;
    margin-top: 15px;
  }

  .profile-button-data .btn-profile {
    flex-basis: 48%;
    border-radius: 10px;
  }
}

/* responsive design  */
@media only screen and (max-width:440px) {
  .container-members {
    width: 100%;
    flex: none;
  }

}