.shop_reviews_module .item {
    margin-bottom: 15px;
    border-radius: 5px;
    position: relative;
}

.shop_reviews_module .item .avatar img{
    width: 80%;
    max-width: 80px;
}

.shop_reviews_module .item .avatar a{
    display: block;
}

.shop_reviews_module .item .avatar{
    position: relative;
}

.shop_reviews_module .item .comment_wrapp:before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 11px solid;
    border-top-color: rgba(0, 0, 0, 0);
    border-bottom-color: rgba(0, 0, 0, 0);    
    border-left-color: rgba(0, 0, 0, 0);
    border-right-color: #f6f6f6;
    top: 25px;
    right: 100%;
}

.shop_reviews_module .item:hover .comment_wrapp:before{
    border-right-color: #BBD057;
}

.shop_reviews_module .item:hover .avatar .border_ksen,
.shop_reviews_module .item:hover .comment_wrapp{
    border-color: #BBD057;
}

.shop_reviews_module .item .comment_wrapp{
    min-height: 76px;
    padding: 5px 10px;
    padding-bottom: 20px;
    position: relative;
    border: 2px solid #f6f6f6;
    background-color: #f6f6f6;
}

.shop_reviews_module .item .comment_wrapp .comment{
    max-height: 145px;
    overflow: hidden;
}

.shop_reviews_module .item .comment_wrapp .read_more{
    position: absolute;
    bottom: 2px;
    left: 10px;
}

@media (max-width: 767px) {
    .shop_reviews_module .item .avatar {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .shop_reviews_module .item .comment_wrapp:before{
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border: 11px solid;
        border-top-color: rgba(0, 0, 0, 0);
        border-bottom-color: #f6f6f6;    
        border-left-color: rgba(0, 0, 0, 0);
        border-right-color: rgba(0, 0, 0, 0);
        top: -22px;
        left: 50%;
        margin-left: -11px;
    }
    
    .shop_reviews_module .item:hover .comment_wrapp:before{
        border-right-color: transparent;
        border-bottom-color: #BBD057;
    }
}