.star-rate {
  display: flex;
  flex-direction: row-reverse;
}

.star-rate input {
  display: none;
}

/* Full star */
.star-rate > label:before {
  display: inline-block;
  font-family: 'bootstrap-icons';
  content: '\F586';
  cursor: pointer;
}

.star-rate label {
  color: #ddd;
  font-size: 24px;
  cursor: pointer;
  margin: 3px;
  transition: all 0.2s ease;
}

.star-rate label:hover,
.star-rate label:hover~label,
.star-rate input:checked~label {
  color: #ffc107;
}
