.jq-stars {
  display: inline-block;
}

.jq-rating-label {
  font-size: 16px;
  display: inline-block;
  position: relative;
  vertical-align: top;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text-muted);
}

.jq-star {
  width: 21px;
  height: 21px;
  display: inline-block;
  cursor: pointer;
}

.jq-star-svg {
  padding-left: 3px;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 2px rgba(255, 204, 0, 0.3));
  transition: transform 0.15s ease, filter 0.15s ease;
}

.jq-star:hover .jq-star-svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.6));
}

.jq-star-svg path {
  stroke-linejoin: round;
}

/* un-used */
.jq-shadow {
  -webkit-filter: drop-shadow( -2px -2px 2px #888 );
  filter: drop-shadow( -2px -2px 2px #888 );
}
