﻿.rating {
    background: url("/Content/Media/ratings_sprite.png") no-repeat;
    width: 185px;
    height: 40px;
    background-size: 185px 335px;
    margin: auto;
    margin-top: 5px;
}

.star_1 {
    background-position: 0 0;
}

.star_2 {
    background-position: 0 -75px;
}

.star_3 {
    background-position: 0 -150px;
}

.star_4 {
    background-position: 0 -225px;
}

.star_5 {
    background-position: 0 -300px;
}

.ratingComment {
    background: url("/Content/Media/sprite_2.png") no-repeat;
    width: 125px;
    height: 35px;
    background-size: 125px 226px;
}

.ratingComment.star_1 {
        background-position: 0px 10px;
    }

.ratingComment.star_2 {
        background-position: 0px -50px;
    }

.ratingComment.star_3 {
        background-position: 0px -100px;
    }

.ratingComment.star_4 {
        background-position: 0px -150px;
    }

.ratingComment.star_5 {
        background-position: 0px -200px;
    }

/* Tooltip text */
.rating .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    width: 120px;
    top: 23%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.8s;
}
.rating:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.rating .tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: 100%; /* At the top of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}
@media (max-width: 640px) {
    .rating {
        background: url("/Content/Media/ratings_sprite.png") no-repeat;
        width: 140px;
        height: 40px;
        background-size: 140px 250px;
        margin: auto;
        margin-top: 5px;
    }

    .star_1 {
        background-position: 0 0;
    }

    .star_2 {
        background-position: 0 -55px;
    }

    .star_3 {
        background-position: 0 -111px;
    }

    .star_4 {
        background-position: 0 -167px;
    }

    .star_5 {
        background-position: 0 -223px;
    }
}