.w_product_feedback_ready_new{
    width: 100%;
    padding: 10px 14px;
    background: #ffffff;
    box-shadow: 0 1px 8px 0 rgb(226 226 226);
    border-radius: 7px;

    .product_feedback_ready_first_line{
        display: grid;
        grid-template-columns: max-content auto;
        gap: 20px;

        .left_part{
            max-width: 215px;
        }
        .username__date{
            display: grid;
            grid-template-columns: calc(100% - 71px) 61px;
            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;
                line-height: 13px;
                padding-top: 4px;
            }
        }
        .stars_rating_container{
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 3px;
            .star{
                &:hover{
                    animation: 0.5s ease-in-out 0s 1 rotate360;
                    scale: 1.1;
                }
            }
            .stars_rating_txt{
                font-size: 14px;
                line-height: 14px;
                font-weight: var(--n-font-weight);
                padding-top: 1px;

                &:hover{
                    scale: 1.1;
                }
            }
        }

        .right_part{
            display: flex;
            gap: 10px;

            img{
                height: 100%;
                min-height: 100%;
                aspect-ratio: 1 / 1;
            }
        }
    }

    .product_feedback_info_container{
        width: 100%;
        display: grid;
        grid-template-columns: 245px calc(100% - 265px);
        gap: 20px;
        margin-top: 10px;

        .product_feedback_rating{
            .product_feedback_rating_line{
                display: grid;
                grid-template-columns: 210px 10px;
                gap: 10px;
                margin: 5px 0;
                &:first-of-type{margin-top: 0;}

                label{
                    font-size: 14px;
                    font-weight: var(--n-font-weight);
                }
                .value{
                    font-size: 16px;
                    font-weight: var(--n-font-weight);
                }
                .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;
                    }
                }
            }
        }
        .product_text_info{
            label{
                font-size: 14px;
                font-weight: var(--n-font-weight);
            }
            .value_container{
                padding-left: 10px;
                margin-bottom: 5px;
                .value{
                    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;
                }
                .show_full{
                    font-size: 12px;
                    line-height: 10px;
                    color: #909090;
                }
            }
        }
    }
}