/* --- Custom Star Rating --- */
.stars-input-container[hidden] {
  display: none !important;
}

.stars-input {
  display: none !important;
}

/* Default state: hollow stars are visible, full stars are hidden */
label .hollow {
  display: inline-block;
}
label .full {
  display: none;
}

/* Stars up to and including the checked one are full */
.stars-input:checked ~ label .hollow,
.stars-input:checked + label .hollow {
  display: none;
}

.stars-input:checked ~ label .full,
.stars-input:checked + label .full {
  display: inline-block;
  color: #f1c40f;
}