﻿/* Star ratings */
.v2-star-rating {
    width: 103px;
    height: 14px;
    position: relative;
    bottom: 2px;
}

    .v2-star-rating:focus {
        outline: none !important;
    }

    .v2-star-rating img {
        height: 100%;
        width: 100%;
        margin: 0 !important;
    }

    .v2-star-rating.interactive:hover {
        cursor: pointer;
    }

/* Label */
.v2-rating-label {
    margin-left: 10px;
    position: relative;
    bottom: 3px;
    font-size: 14px;
}

/* Small-Medium size */
.v2-star-rating.small-medium {
    width: 149px;
    height: 20px;
    bottom: 0;
}

.v2-rating-label.small-medium {
    font-size: 18px;
    bottom: 5px;
}

/* Medium size */
.v2-star-rating.medium {
    width: 175px;
    height: 25px;
    bottom: 3px;
}

.v2-rating-label.medium {
    font-size: 18px;
}

/* Large size */
.v2-star-rating.large {
    width: 200px;
    height: 30px;
    bottom: 4px;
}

.v2-rating-label.large {
    font-size: 20px;
    bottom: 4px;
}


/* ================================================== */
/*                    RESPONSIVE                      */
/* ================================================== */

/* Large Desktop */
@media (max-width: 1200px) {

    /* Medium becomes small */
    .v2-star-rating.medium {
        width: 103px;
        height: 14px;
        bottom: 2px;
    }

    .v2-rating-label.medium {
        font-size: 14px;
    }

    /* Large becomes small */
    .v2-star-rating.large {
        width: 103px;
        height: 14px;
        bottom: 2px;
    }

    .v2-rating-label.large {
        font-size: 14px;
        bottom: 3px;
    }
}
