

/* CSS styling for the stars */
.star {
  display: none;
}

.star + label {
  font-size: 1.5em;
  color: #ccc;
  cursor: pointer;
}

.star:checked + label:before {
  content: '\f005';
  font-family: FontAwesome;
  font-size: 1.5em;
  color: #FFD700;
}
