/* Ratings and Reviews in Single */
.rating-holder {
    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    padding-bottom: 20px;
}
.review-block {
    font-family: 'Source Sans Pro', sans-serif;
    margin-right: 2.5%;  
    flex: 27%;
    -webkit-flex: 27%;
}
.review-block:last-child {
    margin-right: 0;
}
.review-block h2 {
    border-bottom: 2px solid #339900;
    font-size: 24px;
    margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
}
.review-block ul {
    margin: 0;
}
.review-box {
    background: #f6f6f6;
    border: 1px solid #eaeaea;
    border-top: 0; 
    color: #000;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif; 
    padding:20px 15px 25px;
} 

    /* Rating */
    .review-rating.review-block{
        flex: 31%;
        -webkit-flex: 31%;
    }
    .review-rating .review-box {
        color: #2d3e50;
        font-size: 16px;
        font-family: 'Source Sans Pro', sans-serif;
        text-transform: uppercase;
        -webkit-border-radius: 0px 0px 4px 4px ;
        -moz-border-radius: 0px 0px 4px 4px ;
        border-radius: 0px 0px 4px 4px ;
    }
    .review-rating h2 {
        background: #666;
        border: 0;
        color: #fff;
        font-weight: 300;
        line-height: 1;
        padding: 15px;
        -webkit-border-radius: 4px 4px 0px 0px;
        -moz-border-radius: 4px 4px 0px 0px;
        border-radius: 4px 4px 0px 0px;
    }    
    .review-overall {
        border-bottom: 1px solid #eaeaea;
        line-height: 1;
        margin: 5px 0 15px;
        padding-bottom: 15px;
    } 
    .overall {
        float: left;
    }
    .overallrating {
        float: right;
        font-size: 30px;
        font-weight: 600;
        line-height: 1;
        margin-top: -9px;
    }
    .out-of::before{
        content: " / ";
    }
    .out-of {
        font-size: 12px;
        float: right;
        line-height: 1.7;
    }
    .final-rating {
        float: right;
        font-weight: 600;
    }
    .rating-bar {
        background: #e7e7e7;
        margin-top: 3px; 
    }
    .review-rating-bar {
        background: #FF322E;
        height: 8px;
    }
    .review-rating .review-box li {
        background: none;
        padding-left: 0;
    }

    /* Good Points */
    .goodpoints h2::before { 
        content: '\f087';
        font-family:FontAwesome; 
        margin-right: 10px;
    } 
    .goodpoints .review-box li::before { 
        content: '\f00c';
        font-family:FontAwesome; 
        margin-right: 10px;
    }
    
    /* Bad Points */
    .badpoints h2::before {
        content: '\f088';
        font-family:FontAwesome; 
        margin-right: 10px; 
    } 
    .badpoints .review-box li::before { 
        content: '\f00d';
        font-family:FontAwesome; 
        margin-right: 10px;
    }