.review {
 line-height:26px;
 position:relative;
 display:block;
 margin-bottom:40px;
 padding-top:10px;
}
.reviews label, .reviews textarea, .reviews input[type="text"]{
    min-width: 100%;
}
/* .review::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 10px;
    content: '';
    opacity: .2;
    background-color: transparent;
    background-image: radial-gradient(currentColor 1px,transparent 1px);
    background-position: 1px 1px;
    background-size: 5px 5px;
} */

.reviews_detail {
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 0;
    background-color: #fff;
    margin: 0;
    overflow: hidden;
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}
.review_col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #ddd;
}

#review_col_1{
    text-align: center;
}
#review_col_2{

}
#review_col_3{
    border-right: none;
}

#review_col_2 > div {
    line-height: 20px;
    position: relative;
    width: 100%;
    float: left;
    margin-top: 10px;
}
#review_col_2 > div:first-child{
    margin-top: 0;
}

.averageRating {
    font-size: 40px;
    color: #fd9727;
    line-height: 40px;
    display: block;
    text-align: center;
}
.side {
    float: left;
    width: 16%;
}

.middle {
    float: left;
    width: 57%;
    padding-top: 7px;
}
.checked {
    color: orange;
}
/* Place text to the right */
.reviews_detail .right {
    width: 27%;
    text-align: right;
    text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
/* The bar container */
.bar-container {
    width: 100%;
    background-color: #f1f1f1;
    text-align: center;
    color: white;
}

.bar {
    height: 8px;
    background-color: var(--top-header);
    width: 0;
}

a.btn_review {
    display: block;
    height: 40px;
    line-height: 40px;
    width: 100%;
    padding: 0;
    border: 0;
    float: left;
    color: #fff;
    margin-top: 20px;
    background: var(--top-header);
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
}

.form_review{
    margin-top: 15px;
    display: none;
}
.star {
    color: orange !important;
}
.star-over::after {
    font-weight: 900;
    font-size: 22px;
    content: "\f005";
    display: inline-block;
    color: orange;
    z-index: 1;
    position: absolute;
    top: 6px;
    left: 6px;
}
.rate {
    height: 50px;
    margin-left: -5px;
    padding: 5px;
    font-size: 30px;
    position: relative;
    cursor: pointer;
}

.rate input[type="radio"] {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    pointer-events: none;
}

.submit-text .btn {
    background: var(--top-header) none repeat scroll 0 0;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 0;
    margin-top: 20px;
    border-color: transparent;
}

.review-detail{
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}
.reviewer span{
    font-weight: bold;
}
.review-content p{
    margin-bottom:  0;
}
@media only screen and (max-width: 480px){
    .stars span{
        display: block;
    }
    .right span{
        display: none;
    }
}
