.reviews {
  width: 100%;
}

.reviews__no_comments {
  width: 100%;
  padding: 40px;
  text-align: center;
  background-color: #05aa8214;
  border-radius: 15px;
  font-weight: 600;
}
.reviews__item {
  background-color: #fff;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
}
.reviews__item:last-child {
  margin-bottom: 0;
}
.reviews__row {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .reviews__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.reviews__cell {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .reviews__cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.reviews__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .reviews__name {
    margin-bottom: 10px;
  }
}
.reviews__data {
  color: #5a6765;
  font-size: 14px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .reviews__data {
    border-left: 1px solid #5a6765;
    padding-left: 5px;
    margin-left: 5px;
  }
}
.reviews__rating {
  height: 16px;
  width: 78px;
}
.reviews__comment {
  line-height: 1.4;
}
