/*!
 *  Font Awesome 3.2.1
 *  the iconic font designed for Bootstrap
 *  ------------------------------------------------------------------------------
 *  The full suite of pictographic icons, examples, and documentation can be
 *  found at http://fontawesome.io.  Stay up to date on Twitter at
 *  http://twitter.com/fontawesome.
 *
 *  License
 *  ------------------------------------------------------------------------------
 *  - The Font Awesome font is licensed under SIL OFL 1.1 -
 *    http://scripts.sil.org/OFL
 *  - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
 *    http://opensource.org/licenses/mit-license.html
 *  - Font Awesome documentation licensed under CC BY 3.0 -
 *    http://creativecommons.org/licenses/by/3.0/
 *  - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
 *    "Font Awesome by Dave Gandy - http://fontawesome.io"
 *
 *  Author - Dave Gandy
 *  ------------------------------------------------------------------------------
 *  Email: dave@fontawesome.io
 *  Twitter: http://twitter.com/byscuits
 *  Work: Lead Product Designer @ Kyruus - http://kyruus.com
 */
/* FONT PATH
 * -------------------------- */

/****** Style Star Rating Widget *****/

.rating { 
  border: none;
  float: left;
  font-size: 12px;
}

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

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

.rating > label { 
  color: #c1c1c1; 
 float: right; 
}
.modify-star .rating{
    margin: 0px 0px 16px 0px;
}

/***** CSS Magic to Highlight Stars on Hover *****/

.change-rating .rating > input:checked ~ label, /* show gold star when clicked */
.change-rating .rating:not(:checked) > label:hover, /* hover current star */
.change-rating .rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* hover previous stars in list */

.change-rating .rating > input:checked + label:hover, /* hover current star when changing rating */
.change-rating .rating > input:checked ~ label:hover,
.change-rating .rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.change-rating .rating > input:checked ~ label:hover ~ label { color: #FFED85;  } 