:root{
    --nb-comment-item-rating-color: var(--nb-color-secondary);
    --nb-comment-item-image-width: 50px;
    --nb-comment-item-name-font-size: var(--nb-font-size-16);
    --nb-comment-item-name-font-weight: var(--nb-font-regular);

    --nb-comment-item-rating-font-size: var(--nb-font-size-14);
    --nb-comment-item-rating-font-weight: var(--nb-font-regular);
}

.nb-comment-item-1 {
    margin-top: calc(var(--nb-spacer)*2);
    display: flex;
    gap: 20px;
}

.nb-comment-item-1 .nb-rating,
.nb-comment-item-1 .nb-date {
    color: var(--nb-comment-item-rating-color);
    font-size: var(--nb-comment-item-rating-font-size);
    font-weight: var(--nb-comment-item-rating-font-weight);
}

.nb-comment-item-1 .nb-rating {
    margin-bottom: 10px;
}

.nb-comment-item-1 .nb-title-review-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: calc(100% - 100px);
    margin-bottom: 10px;
}

.nb-comment-item-1 .nb-title {
    margin: 0;
    font-size: var(--nb-comment-item-name-font-size);
    font-weight: var(--nb-comment-item-name-font-weight);
    min-width: 120px;
}

.nb-comment-item-1 .nb-text-wrapper .nb-paragraph {
    margin-bottom: calc(var(--nb-spacer)/2);
}

.nb-comment-item-1 .nb-text-wrapper {
    position: relative;
}

.nb-comment-item-1 .nb-text-wrapper .nb-comment-interaction .nb-paragraph {
    margin-bottom: 0;
}

.nb-comment-item-1 .nb-img-wrapper {
    max-width: 50px;
}

.nb-comment-item-1 .nb-img-wrapper img {
    width: var(--nb-comment-item-image-width);
    height: var(--nb-comment-item-image-width);
    border-radius: var( --nb-border-radius-full);
}

.nb-comment-item-1 .nb-content-wrapper {
    width: fit-content;
    flex-grow: 1;
}

.nb-comment-item-1.nb-comment-reply {
    margin-left: 50px;
}

.nb-comment-item-1 .nb-comment-interaction {
    position: absolute;
    right: 0;
    top: 0;
}

@media screen and (max-width:576px ){
    .nb-comment-item-1 {
        position: relative;
        border-bottom:  var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
    }

    .nb-comment-item-1 .nb-img-wrapper {
        position: absolute;
        max-width: 60px;
    }

    .nb-comment-item-1.nb-item .nb-content-wrapper {
        margin-left: 0;
    }

    .nb-comment-item-1 .nb-rating,
    .nb-comment-item-1 .nb-title-review-wrapper {
        margin: 0 0 0 75px;
    }

    .nb-comment-item-1 .nb-title-review-wrapper {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 0;
        margin-bottom: 5px;
    }

    .nb-comment-item-1 .nb-rating {
        height: 0;
    }

    .nb-comment-item-1 .nb-text-wrapper > .nb-paragraph {
        margin-top: 30px;
    }

    .nb-comment-item-1 .nb-date {
        margin-bottom: calc(var(--nb-spacer ));
    }

    .nb-comment-item-1.nb-comment-reply {
        margin-left: 0;
    }

    .nb-comment-item-1 .nb-rating {
        margin-bottom: 0;
    }

}