.section-content__no-feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 100px;
}
@media (max-width: 767px) {
    .section-content__no-feedback { 
        margin: 40px 0;
    }
    
}
.no-feedback__title {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
}
.no-feedback__text {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-black-55);
}
.review__rate-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.review__rate-row .d-flex {
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.review__rate-row textarea {
    max-width: 384px;
    width: 384px;
    height: 100px;
}
.review__rate-row .input-group .input {
    width: 384px;
    padding: 10px 16px;
}
@media (max-width: 767px) {
    .review__rate-row textarea {
        max-width: 100%;
        width: 100%;
    }
    .review__rate-row .input-group .input {
        width: 100%;
    }
}
.review__rate-row .btn._primary {
    width: 93px;
}