:root {
    --COLOR_STAR_RATINGS: #ffc700;
    --COLOR_FILTER_STAR_RATINGS: #7FFFFFFF;
}

.devvn-star-ratings {
    float: right;
    clear: both;
}
.devvn-star-ratings .devvn-stars-wrapper {
    font-size: 0;
    display: inline-block;
    position: relative;
    float: right;
}
.devvn-star-ratings .devvn-stars-wrapper[data-tooltip]:hover:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 90%;
    left: 50%;
    text-align: center;
    max-width: 100px;
    margin-left: -50px;
    background: rgba(0,0,0,.7);
    color: white;
    font-size: 10px;
    border-radius: 3px;
    padding: 3px;
}
.devvn-star-ratings .devvn-stars-outer .devvn-stars-wrapper .devvn-stars-rate {
    display: inline-block;
    font-size: 30px;
    color: var(--COLOR_STAR_RATINGS);
}

.devvn-star-ratings .devvn-stars-wrapper:hover .devvn-stars-rate,
.devvn-star-ratings .devvn-stars-wrapper.is-voted .devvn-stars-rate {
    color: var(--COLOR_STAR_RATINGS);
    cursor: pointer;
}
.devvn-star-ratings .devvn-stars-wrapper > .devvn-stars-rate:hover ~ .devvn-stars-rate {
    color: #0000;
}
.devvn-star-ratings .devvn-stars-wrapper .devvn-stars-rate:active {
    color: var(--COLOR_STAR_RATINGS);
}
.devvn-star-ratings .devvn-stars-overlay {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    background-color: transparent;
    background-color: rgba(255,255,255,.5);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=var(--COLOR_FILTER_STAR_RATINGS),endColorstr=var(--COLOR_FILTER_STAR_RATINGS))";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=var(--COLOR_FILTER_STAR_RATINGS),endColorstr=var(--COLOR_FILTER_STAR_RATINGS));
}
.devvn-star-ratings .devvn-stars-wrapper:hover .devvn-stars-overlay {
    display: none;
}

.devvn-star-ratings .devvn-stars-value span {
    font-size: 14px;
}