.w_product_feedback_ready{
    width: 100%;
    padding: 10px 14px;
    background: #ffffff;
    box-shadow: 0 1px 8px 0 rgb(226 226 226);
    border-radius: 7px;
    .prod_feedback_ready_first_line{
        width: 100%;
        display: grid;
        grid-template-columns: max-content auto;
        gap: 0 20px;

        .left_part{
            max-width: 215px;
            .username__rating{
                display: grid;
                align-items: center;
                grid-template-columns: calc(100% - 65px) 55px;
                gap: 10px;
            }
            .username{
                font-size: 16px;
                font-weight: var(--n-font-weight);
                line-height: 18px;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow-wrap: anywhere;
            }
            .date{font-size: 12px;font-weight: var(--n-font-weight);color: #909090;}
            .general_feedback_rating{
                display: flex;
                align-items: center;
                gap: 5px;
                padding: 0 7px;
                width: fit-content;
                height: 22px;

                background: #f9f9f9;

                border: 1px solid #bc8124;
                border-radius: 5px;
                img{
                    width: 12px;
                    height: 12px;
                    filter: brightness(0) saturate(100%) invert(65%) sepia(81%) saturate(1547%) hue-rotate(356deg) brightness(99%) contrast(93%);;
                    &:hover{
                        animation: 0.5s ease-in-out 0s 1 rotate360;
                        scale: 1.1;
                    }
                }
                div{
                    font-size: 12px;
                    line-height: 11px;
                    padding-top: 1px;
                    color: #e88e00;
                    transition: 0.1s all;
                    &:hover{
                        scale: 1.1;
                    }
                }
            }
        }
        .right_part{
            display: flex;
            gap: 10px;
            overflow: auto;
            img{
                width: 50px;
                min-width: 50px;
                height: 50px;
                min-height: 50px;
                object-fit: cover;
                display: block;
                border-radius: 3px;}
        }
    }
    .feedback_info{
        width: 100%;
        margin-top: 10px;

        .section_title{
            font-size: 16px;
            font-weight: var(--n-font-weight);
        }
        .feedback_rating_info{
            width: 100%;
            margin-bottom: 10px;
            .feedback_rating_info_line{
                display: flex;
                align-items: center;
                gap: 10px;
                margin-left: 10px;

                label{
                    font-size: 14px;
                    font-weight: var(--n-font-weight);
                    height: fit-content;
                    line-height: 18px;
                }
                .rating_info_rating{
                    display: flex;
                    align-items: center;
                    gap: 4px;
                    width: fit-content;
                    height: 22px;
                    border-radius: 5px;

                    img{
                        width: 12px;
                        height: 12px;
                        filter: brightness(0) saturate(100%) invert(65%) sepia(81%) saturate(1547%) hue-rotate(356deg) brightness(99%) contrast(93%);;
                    }
                    div{
                        font-size: 16px;
                        line-height: 13px;
                        padding-top: 1px;
                        color: #e88e00;
                    }
                }
            }
        }
        .feedback_text_info{
            .feedback_text_info_part{
                margin-left: 10px;
                padding: 2px 5px;
                background: #f9f9f9;
                border: 1px solid #c2c2c2;
                border-radius: 3px;
                width: calc(100% - 10px);

                margin-bottom: 10px;
                label{
                    font-size: 14px;
                    font-weight: var(--n-font-weight);
                }
                .content{
                    font-size: 16px;
                    font-weight: var(--n-font-weight);
                }
            }
        }
    }
}