/**
 *	Star Rating Admin
 */
@charset "UTF-8";
#cmb2-star-rating-metabox .star-cb-group {
  /* remove inline-block whitespace */
  font-size: 0;
  /* flip the order so we can use the + and ~ combinators */
  unicode-bidi: bidi-override;
  direction: rtl;
  /* the hidden clearer */
}
#cmb2-star-rating-metabox .star-cb-group * {
  font-size: 1rem;
}
#cmb2-star-rating-metabox .star-cb-group > input {
  display: none;
}
#cmb2-star-rating-metabox .star-cb-group > input + label {
  /* only enough room for the star */
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1.75em;
  white-space: nowrap;
  cursor: pointer;
}
#cmb2-star-rating-metabox .star-cb-group > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "\f154";
  font-family: 'dashicons';
  color: #888;
  font-size: 1.75em;
}
#cmb2-star-rating-metabox .star-cb-group > input:checked ~ label:before, 
#cmb2-star-rating-metabox  .star-cb-group > input + label:hover ~ label:before, 
#cmb2-star-rating-metabox .star-cb-group > input + label:hover:before {
  content: "\f155";
  font-family: 'dashicons';
  color: #FFC926;
  text-shadow: 0 0 1px #333;
  font-size: 1.75em;
}
#cmb2-star-rating-metabox .star-cb-group > .star-cb-clear + label {
  text-indent: -9999px;
  width: .5em;
  margin-left: -.5em;
}
#cmb2-star-rating-metabox .star-cb-group > .star-cb-clear + label:before {
  width: .5em;
}
#cmb2-star-rating-metabox .star-cb-group:hover > input + label:before {
  content: "\f154";
  font-family: 'dashicons';
  color: #888;
  text-shadow: none;
  font-size: 1.75em;
}
#cmb2-star-rating-metabox .star-cb-group:hover > input + label:hover ~ label:before, 
#cmb2-star-rating-metabox .star-cb-group:hover > input + label:hover:before {
  content: "\f155";
  font-family: 'dashicons';
  color: #FFC926;
  text-shadow: 0 0 1px #333;
  font-size: 1.75em;
}
#cmb2-star-rating-metabox fieldset {
  border: 0;
  background: transparent;
  border-radius: 1px;
}
