
  /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
  /* make hover effect work properly in IE */
  /* hide radio inputs */
  /* hide 'none' input from screenreaders */
  /* set icon padding and size */
  /* set default star color */
  /* if any input is checked, make its following siblings grey */
  /* make all stars orange on rating group hover */
  /* make hovered input's following siblings grey on hover */


  .rating-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px 24px 0px;
    word-wrap: break-word;
    word-break: break-word;
  }

.rating-group {
  font-family: "National 2";
  text-align: center;
  display: flex;
  min-width: 325px;
}

.rating-group-number {
  display: flex;
}

#full-stars .rating__icon {
  pointer-events: none;
}
#full-stars .rating__input {
  position: absolute !important;
  opacity: 0;
}

#full-stars .rating__label {
  cursor: pointer;
  padding: 0 0.1em;
  font-size: 43px;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
}


@media only screen and (min-device-width : 320px) and (max-device-width : 480px){
  #full-stars .rating__label {
    font-size: 1.7rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  #full-stars .rating__label {
    font-size: 2.3rem;
  }
}

#full-stars .rating__icon--star {
  /*max-height: 36px;
  max-width: 36px;*/
}

#full-stars {
  margin: 0px auto;
}

/*
#full-stars .rating__icon--star {
  color: #412CE1;
}
#full-stars .rating__input:checked ~ .rating__label .rating__icon--star {
  color: #E7E7E7;
}
#full-stars .rating-group:hover .rating__label .rating__icon--star {
  color: #412CE1;
}
#full-stars .rating__input:hover ~ .rating__label .rating__icon--star {
  color: #E7E7E7;
}
*/
