/* 
* style for rating 
*/

.star-rating {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}
/* .star-rating:hover,
.star-rating.active {
    color: #FFD700;
} */
.fg-orange {
    color: #FFD700;
}
.star-active {
    color: #FFD700;
}

.rating-container {
    /* border: 1px solid #e5e5e5;
    border-radius: 4px; */
    /* padding: 0 20px; */
    /* margin-bottom: 20px; */
    background-color: #fff;
}

.rating-header {
    margin-bottom: 15px;
}

.rating-score {
    font-size: 28px;
    font-weight: bold;
    color: #ff5722;
}

.rating-max {
    font-size: 18px;
    color: #9e9e9e;
}

.rating-satisfaction {
    color: #4caf50;
    font-weight: bold;
}

.rating-count {
    color: #9e9e9e;
    font-size: 13px;
}

.rating-stars {
    margin-top: 15px;
}

.rating-bar-container {
    margin-bottom: 5px;
}

.rating-bar-label {
    width: 30px;
    display: inline-block;
    text-align: right;
    margin-right: 10px;
}

.rating-bar {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    display: inline-block;
    width: calc(100% - 120px);
    max-width: 200px;
    vertical-align: middle;
}

.rating-bar-fill {
    height: 100%;
    border-radius: 5px;
    /* background-color: #ff5722; */
    background-color: #00bca4
}

.rating-bar-count {
    margin-left: 10px;
    color: #9e9e9e;
    font-size: 13px;
}

.rating-source {
    margin-top: 15px;
    font-size: 12px;
    color: #9e9e9e;
    border-top: 1px solid #e5e5e5;
    padding-top: 15px;
}