/****** Style Star Rating Widget *****/

.rating {
    border: none;
    float: left;
}

.rating>input {
    display: none;
}

.rating>label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}


.rating>.half:before {
    content: "\f006";
    font-size: 0;
    position: absolute;
}

.rating>label {
    color: #ddd;
    float: right;
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating>input:checked~label,
/* show gold star when clicked */
.rating:not(:checked)>label:hover,
/* hover current star */
.rating:not(:checked)>label:hover~label {
    color: #FFD700;
}

/* hover previous stars in list */

.rating>input:checked+label:hover,
/* hover current star when changing rating */
.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,
/* lighten current selection */
.rating>input:checked~label:hover~label {
    color: #FFED85;
}


/* font-end */
.review_div {
    background: var(--lightgrey);
    padding: 30px 10px;
    border-radius: 10px;
    border: 3px solid var(--blue);
}
.bcome_first {
    text-align: center;
    font-size: 20px;
    padding-bottom: 15px;
}
.SubmitReviewDiv {
    margin: 0px 20px;
    padding: 10px;
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 10px;
}
.review_feedDiv{
    height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 0px 20px;
    border-radius: 10px;
}
.review_feed{
    padding: 20px 10px;
    background: var(--white);
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 15px -14px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 10px 15px -14px rgba(0,0,0,0.35);
    box-shadow: 0px 10px 15px -14px rgba(0,0,0,0.35);
}
.review_div .bacome_first{
    text-align: center;
    font-size: 20px;
    padding-bottom: 10px;
}
.review_div .review_avtar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    text-transform: uppercase;
    background: var(--litegrey);
    font-size: 30px;
    text-align: center;
    padding: 13px;
    color: var(--white);
}
.rv_content div{
    margin: 5px 0px;
}
.rv_content .preview {
    display: inline-block;
    margin: 10px;
}
.rv_content .preview img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}
.rv_content .preview button{
    text-transform: none;
    position: relative;
    display: block;
    top: 5px;
}

.customer_name{
    text-transform: capitalize;
}
.review_feed .given_rating .gstar{
    font-size: 16px!important;
    color: gold !important;
}
.given_rating .gstar{
    font-size: 16px!important;
    color: gold !important;
}
.reviewPostedOn{
    font-size: 12px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.review_comment{
    border: 1px solid #dddddd;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 3px;
}
.review_comment p {
    font-size: 16px;
    text-transform: capitalize;
}
.review_feed .vertical_scroll{
    overflow-x: scroll;
}
.review_feed .reviewMedia {
    width: 150px;
    /* height: 100px; */
    overflow: hidden;
    display: inline-block;
}