/** stars **/
.star-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: #fff;
    /*max-height: 42px;*/
}
.star {
    background-image: url('../../images/reviews/logo-int.jpg');
    background-size: cover;
    width: 52px;
    height: 42px;
    margin: 0 2px;
}
.star.active {
    background-image: url('../../images/reviews/logo-int.jpg');
}
.star.disabled {
    background-image: url('../../images/reviews/logo-int.svg');
}
/* handle decimal coloration */
.star.noneStar {
    background-image: url('../../images/reviews/logo-int.svg');
}
.star.halfStar {
    background-image: url('../../images/reviews/half-star.png');
}
.star.fullStar {
    background-image: url('../../images/reviews/logo-int.jpg');
}