.user_name_rnr {
  font-size: 8rem;
}
.rating {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  overflow: hidden;
  flex-direction: row-reverse;
  position: relative;
}
.rating-0 {
  filter: grayscale(100%);
}
.rating > input {
  display: none;
}
.rating > label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin: 0;
  background-image: url("../images/empty-star.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: 0.3s;
}
.rating > input:checked ~ label,
.rating > input:checked ~ label ~ label {
  background-image: url("../images/full-star.svg");
}
.rating > input:not(:checked) ~ label:hover,
.rating > input:not(:checked) ~ label:hover ~ label {
  background-image: url("../images/full-star.svg");
}
#rating-1:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-100px);
}
#rating-2:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-200px);
}
#rating-3:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-300px);
}
#rating-4:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-400px);
}
#rating-5:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-500px);
}
.feedback {
  max-width: 360px;
  background-color: #fff;
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.rnr-full-star {
  background-image: url("../images/full-star.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.rnr-empty-star {
  background-image: url("../images/empty-star.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.rnr-half-star {
  background-image: url("../images/half-star.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.rnr-comment {
  padding-top: 20px;
  padding-bottom: 20px;
}

.rnr-comment-user {
  padding-right: 20px;
}
