/* .boxRating {
    padding: 20px;
    margin: 50px 0;
}
.boxRating h1 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    font-family: 'Poppins';
    font-style: initial;
} */
.boxRating ul.stars {
  margin-bottom: 0;
}

.boxRating ul.stars li {
  display: inline-block;
  margin: 0 !important;
}
.boxRating ul.stars li span {
  width: 20px;
  height: 20px;
  display: block;
}
.boxRating ul.stars li .star-on {
  background: url("../img/star-on.svg") no-repeat center;
}
.boxRating ul.stars li .star-off {
  background: url("../img/star-off.svg") no-repeat center;
}
.boxRating ul.stars li .star-semi {
  background: url("../img/star-semi.svg") no-repeat center;
}
.boxRating ul.stars li .star-off.hover {
  cursor: pointer;
}
.boxRating ul.stars li .star-off.hover:hover {
  background: url("../img/star-on.svg") no-repeat center;
}
.boxRating .row.details {
  text-align: right;
  border-bottom: 1px solid #ededed;
  margin-bottom: 25px;
  padding: 0 20px;
}
.boxRating .row.details > * {
  display: inline-block;
  vertical-align: middle;
  font-style: initial;
  font-size: 16px;
  color: #9b9b9b;
  font-family: "Poppins", sans-serif;
}
.boxRating .row.details .doubleRating {
  font-weight: bold;
  font-size: 16px;
}
.boxRating .row.details > *:nth-child(2) {
  margin: 0 8px;
}
.boxRating form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.boxRating form label {
  font-size: 13px;
  display: inherit;
  font-weight: bold;
  color: #8f8f8f;
}

.boxRating form input[type="text"] {
  height: 35px;
}

.boxRating form input[type="text"],
.boxRating form textarea {
  border: 1px solid #c7c7c7;
  color: #8c8c8c;
  font-size: 14px;
  width: 100%;
  padding: 10px;
}
.boxRating form textarea {
  resize: none;
  height: 80px;
}
.boxRating form input[type="submit"] {
  font-size: 14px;
  color: #fff;
  background: #000;
  padding: 10px 30px;
  cursor: pointer;
  width: 100%;
}
.boxRating form input[type="submit"]:hover {
  background: #64922f;
}
.boxRating .boxComments {
  margin-bottom: 50px;
}
.boxRating .comment {
  border-bottom: 1px solid #ededed;
  padding: 0 20px 20px 20px;
  margin-bottom: 20px;
}

.boxRating .comment h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
}

.boxRating .comment p {
  color: #000;
  font-size: 12px;
}

.boxRating .comment .info ul {
  float: left;
}
.boxRating .comment .info .date {
  float: right;
  font-size: 12px;
  color: #878787;
}
.boxRating .comment .author {
  font-weight: 500;
  color: #7a7a7a;
  font-size: 16px;
}
/**/

.rating {
  border: none;
  float: left;
}
.rating > input {
  display: none;
}
.rating > label:before {
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  background: url("../img/star-off.svg") no-repeat center;
}
/* .rating > .half:before {
  content: "\f089";
  position: absolute;
} */
.rating > label {
  color: #ddd;
  float: right;
}
.rating > input:checked label:before,
.rating:not(:checked) > label:hover:before {
  background: none;
}
/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label {
  background: url("../img/star-on.svg") no-repeat center;
} /* hover previous stars in list */
.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label {
  color: #ffed85;
}
