.comment-list{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.comment-list__item{
  display: flex;
  flex-direction: row;
  padding: 0 3px;
  width: 70%;
  text-decoration: none !important;
  margin-bottom: 60px;
}
.comment-list__text{
  width:60%;
  display: flex;
  align-items: center;
}
.comment-list__details{
  display: flex;
  flex-direction: row;

  width:40%;
}
.comment-list__personal-data{
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  padding: 0 20px;
}
.comment-list__more-button{

}
.comment-list__more-button-block{
  text-align: center;
  margin-bottom: 60px;
}
img.comment-list__image{
  width:100px;
  height:100px;
  border-radius: 50%;
}

@media  (max-width: 767px) {
  .comment-list__item{
    width: 100%;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .comment-list__text{
    width:100%;
  }
  .comment-list__details{
    width:100%;
  }


}