@charset "UTF-8";
/* Star Rating */
.rate {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

#star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#star-rating > input {
  display: none;
}
#star-rating > input:checked ~ label {
  opacity: 1;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3e%3cpath d='M305.3 12.57L360.2 181.6h177.6c17.6 0 24.92 22.55 10.68 32.9l-143.7 104.5l54.89 169.1c5.44 16.76-13.72 30.69-27.96 20.33L288 403.1l-143.7 104.5c-14.24 10.36-33.4-3.577-27.96-20.33l54.89-169.1L27.53 214.5C13.28 204.2 20.6 181.6 38.21 181.6h177.6l54.89-169.1C276.2-4.19 299.8-4.19 305.3 12.57z' fill='var(--brand-color-svg)'/%3e%3c/svg%3e");
}
#star-rating > label {
  position: relative;
  width: 2.25rem;
  height: 1.5rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3e%3cpath d='M537.8 181.6h-177.6l-54.89-169.1C302.6 4.19 295.3 0 288 0S273.4 4.19 270.7 12.57L215.8 181.6H38.21c-17.6 0-24.92 22.54-10.68 32.9l143.7 104.5L116.3 488.1C112.2 500.9 122.3 512 133.7 512c3.553 0 7.227-1.09 10.62-3.556L288 403.1l143.7 104.5C435.1 510.9 438.8 512 442.3 512c11.36 0 21.49-11.13 17.35-23.89l-54.89-169.1l143.7-104.5C562.7 204.2 555.4 181.6 537.8 181.6zM370.8 317.9l45.34 139.7l-118.7-86.3c-5.61-4.079-13.21-4.079-18.82 0l-118.7 86.3l45.34-139.7c2.139-6.589-.2054-13.81-5.808-17.88L80.7 213.6h146.8c6.933 0 13.08-4.465 15.22-11.06L288 62.96l45.33 139.6c2.141 6.594 8.285 11.06 15.22 11.06h146.8l-118.7 86.35C370.1 304.1 368.6 311.3 370.8 317.9z' fill='var(--brand-color-svg)'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
}
#star-rating > label:hover, #star-rating > label:hover ~ label {
  opacity: 1 !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3e%3cpath d='M305.3 12.57L360.2 181.6h177.6c17.6 0 24.92 22.55 10.68 32.9l-143.7 104.5l54.89 169.1c5.44 16.76-13.72 30.69-27.96 20.33L288 403.1l-143.7 104.5c-14.24 10.36-33.4-3.577-27.96-20.33l54.89-169.1L27.53 214.5C13.28 204.2 20.6 181.6 38.21 181.6h177.6l54.89-169.1C276.2-4.19 299.8-4.19 305.3 12.57z' fill='var(--brand-color-svg)'/%3e%3c/svg%3e");
}
#star-rating:hover > input:checked ~ label {
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3e%3cpath d='M305.3 12.57L360.2 181.6h177.6c17.6 0 24.92 22.55 10.68 32.9l-143.7 104.5l54.89 169.1c5.44 16.76-13.72 30.69-27.96 20.33L288 403.1l-143.7 104.5c-14.24 10.36-33.4-3.577-27.96-20.33l54.89-169.1L27.53 214.5C13.28 204.2 20.6 181.6 38.21 181.6h177.6l54.89-169.1C276.2-4.19 299.8-4.19 305.3 12.57z' fill='var(--brand-color-svg)'/%3e%3c/svg%3e");
}

.star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.star-rating > input {
  display: none;
}
.star-rating > input:checked ~ label:before {
  opacity: 1;
}
.star-rating > label {
  position: relative;
  /*width: 1em;*/
  font-size: 1.4em;
  font-weight: 300;
  color: var(--body-font);
  cursor: pointer;
}
.star-rating > label::before {
  content: "★";
  position: absolute;
  opacity: 0;
}

.post-rating .star-rating {
  padding-top: 0.15rem;
}