.star-ratings {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.star-rating {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.filled-stars, .unfilled-stars {
  display: inline-block;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.filled-stars:before, .unfilled-stars:before {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  left: 0;
  top: 0;
}

.filled-stars:before {
  color: gold;
  width: 100%;
}

.unfilled-stars:before {
  color: #ddd;
}

.star-rating-value {
  display: inline-block;
  margin-left: 10px;
  color: #666;
}
