.user-rating {
    position: relative;
    display: block;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
    margin: 40px 0;
}
.user-rating .noUi-connect {
    background-color: #2c7fd0;
}
.user-rating .noUi-pips {
    display: none;
}

.user-rating {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.rating-items {
    width: 46%;
    padding: 0 2%;
}
.rating-item {
    margin-bottom: 16px;
}
.rating-item-option {
    margin-top: 6px;
}
.rating-pros-cons {
    width: 46%;
    padding: 0 2%;
}
.rating-pros-cons label {
    margin-bottom: 6px;
}
.rating-item-title {
    float: left;
    margin-right: 10px;
    color: #000000;
    font-weight: bold;
}
.rating-item-label {
    color: #000000;
    font-weight: bold;
    font-size: 15px;
}


.comment-review-wrap {
    position: relative;
    display: flex;
    justify-content: normal;
    flex-wrap: wrap;
}
.comment-text {
    width: 48%;
    margin-right: 2%;
    margin-bottom: 20px;
}
.comment-review {
    width: 48%;
}
.comment-review-total {
    font-weight: bold;
    margin-bottom: 30px;
}
.comment-review-pros {
    margin-bottom: 8px;
}
.comment-review-cons {}
.comment-review-label {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 4px;
}
@media (max-width: 768px){
    .user-rating .rating-items,
    .user-rating .rating-pros-cons {
        width: 100%;
    }
    .user-rating .rating-items {
        margin-bottom: 20px;
    }
    .comment-text,
    .comment-review {
        width: 100%;
        margin-right: 0;
    }
}