.feedback {
    border: 1px solid rgba(43, 43, 43, 0.5);
    border-radius: 20px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feedback-date-person-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedback-date {
    display: flex;
    justify-content: flex-end;
}

.feedback-date-text {
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    color: rgba(43, 43, 43, 0.5);
}

.feedback-person-info {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.feedback-img {
    width: 62px;
    height: 62px;
    margin: 0 auto;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 900px;
}

.feedback-person-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.feedback-person-info-text-name {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
}

.feedback-person-info-text-desc {
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    color: rgba(43, 43, 43, 0.5);
}

.feedback-info-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: rgba(43, 43, 43, 0.7);
}

.feedback-info-description p {
    margin: 0;
}

.stars {
    position: relative;
    width: 152px;
    height: 24px;
    display: inline-block;
}

.stars-bg,
.stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.stars-bg {
    background-image: url("/static/images/icons/product_detail/rating_of_product_star_half_black.svg");
}

.stars-fill {
    background-image: url("/static/images/icons/product_detail/rating_of_product_star_black.svg");
    /*width: calc(3.4 / 5 * 100%);*/
    overflow: hidden;
}

.feedback-info-rating-value {
    margin-left: 164px;
    font-size: 16px;
    line-height: 25px;
    color: rgba(43, 43, 43, 0.7);
}
