
.rating { 
  border: none;
  float: left;
}
.rating.no_action_float {
  pointer-events: none !important;
  border: none  !important;
  float: none  !important;
}
.rating.no_action {
  pointer-events: none !important;
}

.rating.no_action_float_none {
  pointer-events: none !important;
  border: none  !important;
}

.rating > input { display: none; } 
.rating > label:before { 
  margin: 2px;
  font-size: 30px;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
}

.rating > .half:before { 
  content: "\f089";
  position: absolute;
}

.rating > label { 
  color: #ddd; 
 float: right; 
}

.rating .active_label {
  color: #FFED85;
}

.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* 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;  }

.rating input, label {
  cursor: pointer;
}


.fa-heart {
  color: red;
  font-size: 30px;
  margin-bottom: 10px;
}

.fa-heart:before {
  content: "\f004";
  font-family: FontAwesome;
}