.comments-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 28px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}

.description {
  text-align: center;
  width: 100%;
}

.comments-header .rate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 150px;
  margin-bottom: 20px;
  font-size: 25px;
}

.columns-2-zone {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.columns-2-zone>div {
  width: 50%;
}

.notes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.note {
  margin-bottom: 20px;
  margin-left: 20px;
}

.note.freezed {
  color: #949191;
}

.note.freezed progress {
  color: #949191;
}

.note.freezed progress::-webkit-progress-bar {
  color: #949191;
}

.note.freezed progress::-webkit-progress-value {
  color: #949191;
}

.note.freezed progress::-moz-progress-bar {
  color: #949191;
}

.comments-zone {
  display: flex;
  flex-wrap: wrap
}

.comment {
  width: 49%;
  padding: 2%;
  border-bottom: 1px solid #FF8000;
  margin-bottom: 2%;
  position: relative;
}

.comment:nth-child(odd) {
  margin-right: 2%;
}

.comment p {
  margin-bottom: 2%;
}

.comment p a {
  font-size: 12px;
  text-decoration: underline;
}

.comment h6 {
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  bottom: 2%;
  left: 4%;
  color: #949191;
}

.comment h6 span {
  font-weight: 800;
}

.comment h5 {
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  bottom: 2%;
  right: 4%;
  color: #949191;
}

@media screen and (max-width:800px) {
  .comment {
    width: 98%;
  }
}

@media screen and (max-width:768px) {
  .columns-2-zone {
    display: flex;
    flex-direction: column;
  }

  .notes {
    margin-bottom: 15px;
  }
}