/* Default styles */
.jm-rating-component {
  padding: 6px 6px 4px 6px;
      margin-left: -6px;
}

.jm-rating-component > * {
  font-size: 40px;
  margin-left: -1px;
  cursor: pointer;
  color: #ffd700;
}

.jm-rating-component > *:first-child {
  margin-left: 0;
}

/* Example-2 styles */
.jm-rating-example-2 {
  border: 1px black solid;
  padding: 30px 6px 0 6px;
}

.jm-rating-example-2 > * {
  font-size: 40px;
  margin-left: 4px;
  cursor: pointer;
  color: #adb555
}

.jm-rating-example-2 > *:first-child {
  margin-left: 0;
}

/* Custom image with star */
.star-off, .star-on {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-image: url(../images/star.png) 0 0 no-repeat;
}

.star-off {
  background: url(../images/star.png) 0 0 no-repeat;
}

.star-on {
  background: url(../images/star.png) -32px 0 no-repeat;
}

/* Custom image with heart */
.heart-off, .heart-on {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-image: url(../images/heart.png) 0 0 no-repeat;
}

.heart-off {
  background: url(../images/heart.png) 0 0 no-repeat;
}

.heart-on {
  background: url(../images/heart.png) -32px 0 no-repeat;
}
