/* [project]/app/components/reviews/StarRating.scss.css [app-client] (css) */
.star-rating {
  display: inline-flex;
  align-items: center;
}

.star-rating.small .star {
  font-size: .9rem;
}

.star-rating.medium .star {
  font-size: 1.25rem;
}

.star-rating.large .star {
  font-size: 1.5rem;
}

.star-rating .star {
  position: relative;
  display: inline-block;
  cursor: default;
  color: #ddd;
  margin-right: 2px;
}

.star-rating .star.full {
  color: #ffb800;
}

.star-rating .star.half {
  color: #ddd;
}

.star-rating .star.half:before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #ffb800;
}

.star-rating.editable .star {
  cursor: pointer;
  transition: transform .1s;
}

.star-rating.editable .star:hover {
  transform: scale(1.15);
}

.star-rating .rating-value {
  margin-left: 8px;
  font-size: .9rem;
  color: #555;
  font-weight: 500;
}

/*# sourceMappingURL=app_components_reviews_StarRating_scss_b52d8e.css.map*/