.ratingDiv {
  display: flex;
  justify-content: flex-end;
}

.rating {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
}
.rating input {
  display: none;
}
.rating label {
  display: block;
  cursor: pointer;
  width: 30px;
}

.rating label:before {
  content: "\f005";
  font-family: "Font Awesome 5 Pro";
  position: relative;
  display: block;
  font-weight: bold;
  font-size: 30px;
  color: #101010;
}
.rating label:after {
  content: "\f005";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  display: block;
  font-weight: bold;
  font-size: 30px;
  color: #fdcc0d;
  top: 0;
  opacity: 0;
  transition: 0.5s;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.rating label:hover:after,
.rating label:hover ~ label:after,
.rating input:checked ~ label:after {
  opacity: 1;
}

.age {
  margin-top: 1.1rem;
}
.name {
  margin-bottom: 0.1rem;
}
