.wishList-star label:hover,
.wishList-star label:hover ~ label
{
    color: #f5b301;
    -ms-transform: scale(1.5);    
    -moz-transform: scale(1.5);  
    -webkit-transform: scale(1.5);  
    -o-transform: scale(1.5);  
    transform: scale(1.5);
}
 
.wishList-star *
{
    margin: 0;
    padding: 0;
}
 
.wishList-star input
{
    display: none;
}
 
.wishList-star
{
    unicode-bidi: bidi-override;
    direction: rtl;
}
 
.wishList-star label
{
    color: #ccc;
}
 
.wishList-star label::before
{
    content: "\2605";
    width: 18px;
    line-height: 18px;
    text-align: left;
    font-size: 4em;
    cursor: pointer;
}
 
.wishList-star input:checked ~ label
{
    color: #f5b301;
}
 
