/*
*   Stars Rating Styles
*/

#rate-it {
    display: none !important;
}

.rating-stars {
    font-size: 15px;
}

.rating-stars i {
    margin-right: 2px;
    color: #d2d2d2;
}

.rating-stars i.rated:after {
    color: #EDB867;
}

.stars-avg-rating {
    text-align: center; 
    font-size: 18px;
    margin: 20px 0;
    clear: both;
}

.stars-avg-rating .rating-stars {
    font-size: 18px;
    margin-right: 10px;

}

/*** Settings Preferences Style ***/
.rating-stars i:after {
    content: '\f006';
    color: #d2d2d2;
}

.rating-stars i.stars-style-solid:after {
    content: '\f005';
}

/*** Disabling the rating bar for reply comment form ***/
.comment #respond #stars-rating-review {
    display: none;
}

/*** Lower Rating Alert ***/
.low-rating-alert-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.low-rating-alert-wrap {
    max-width: 500px;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 16px;
}

.low-rating-alert-wrap p {
    margin: 0 0 30px;
}

.low-rating-alert-wrap a {
    padding: 8px 14px;
    margin: 0 5px;
    cursor: pointer;
    background: #1dbf73;
    border-radius: 4px;
    text-decoration: none;
    color: white;
}

.low-rating-alert-wrap a:hover {
    background: #00a32a;
}

.low-rating-alert-wrap #post-rating {
    background: #b94a48;
}

.low-rating-alert-wrap #contact-before-rating:hover {
    background: #be3631;
}

.low-rating-alert-wrap i {
    font-size: 50px;
    color: orange;
    margin-bottom: 20px;
}