@charset "UTF-8";
.star-rating {
  display: flex;
  gap: 0px;
  cursor: pointer;
}
.star-rating.star-size-1 {
  font-size: 1rem;
}
.star-rating.star-size-2 {
  font-size: 2rem;
}
.star-rating.star-size-3 {
  font-size: 3rem;
}
.star-rating.star-size-4 {
  font-size: 4rem;
}
.star-rating .star {
  color: #ccc;
  position: relative;
  transition: color 0.2s;
}
.star-rating .star.full {
  color: gold;
}
.star-rating .star.half::before {
  content: "★";
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: gold;
}
.star-rating.read-only {
  pointer-events: none;
  cursor: default;
}/*# sourceMappingURL=starRating.css.map */