.rating-group {
  padding: 20px 0 20px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f1f1;
}

.rating-label {
  margin-right: 8px;
}

.star-wrapper {
  position: relative;
  width: 140px; /* 28px × 5 */
  height: 28px;
  cursor: pointer;
  user-select: none;
}

.stars-base,
.stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.stars-base div,
.stars-fill div {
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

.stars-base .star-border {
  background-image: url('../img/svg/icon-star-border.svg');
}

.stars-fill .star-on {
  background-image: url('../img/svg/icon-star.svg');
}

.stars-fill {
  overflow: hidden;
  transition: width 0.1s ease;
}