<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Rate widget fivestar CSS */

.fivestar-rating-wrapper {
  display: inline-block;
  padding: 0px;
  line-height: 0;
}

div.fivestar &gt; form &gt; table &gt; tbody &gt; tr.rating-table-tr {
  border: none;
}

div.fivestar &gt; form &gt; table &gt; tbody &gt; tr &gt; td.rating-table-td {
  border: none;
  padding: 0px;
}

div.fivestar-rating-wrapper &gt; div.form-type-radio {
  display: inline-block;
  padding: 0px;
  margin: 0px;
}

div.fivestar-rating-wrapper &gt; div &gt; label {
  display: inline-block;
  padding: 0px;
  margin: 0px;
}

div.fivestar-rating-wrapper &gt; div &gt; label::before {
  font-size: 1.25em;
  font-family: FontAwesome;
  content: "\f005";
}

div.fivestar-rating-wrapper &gt; div &gt; label,
div.fivestar-rating-wrapper &gt; div &gt; label.empty {
  color: #ddd; /* empty star background - grey */
}

div.fivestar-rating-wrapper &gt; div &gt; label.full {
  color: #ffcc00; /* full star background - gold */
}
div.fivestar-rating-wrapper &gt; div &gt; label.hover {
  color: #ff9900 !important; /* full star background - orange */
}

div.fivestar-rating-wrapper &gt; div &gt; label.average {
  color: #ffcc00; /* full star background - gold */
}

div.fivestar-rating-wrapper &gt; div &gt; div.rating-option-result {
  display: inline;
  text-align: center;
  padding: 5px;
}

input.fivestar-rating-input[type="radio"] {
  display: none;
}

button.fivestar-rating-submit {
  display: none;
}

input.fivestar-rating-submit {
  display: none;
}
</pre></body></html>