.submitButton {
    display: flex;
    justify-content: center;

    margin-bottom: 25px;
}

.submitButton__button {
    display: flex;
    width: 263px;
    height: 50px;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #FF6B98;
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    color: #FFF;
}
.submitButton__button:hover {
    background: #ec608a;
    color: #FFF;
    text-decoration: none;
}
.shopReview {
    display: flex;
    gap: 150px;
    border-bottom: 2px solid #FF6B98;
    max-width: 1074px;
    padding-bottom: 36px;
    padding-top: 36px;
}
.review_header {
    min-width: 100px;
}
.reviewContent__btn-reply {
    width: fit-content;
    color: #FF6B98;
    border-bottom: 1px dashed #FF6B98;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;

}
.review_author_name {
    color: #262626;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.review_author_date {
    color: #848484;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 18px;
}
.shopReview .productCard__rating {
    justify-content: left;
}
.review_wrapper {
    position: relative;
    max-width: 1279px;
    border-radius: 15px;
    border: unset;
    background-color: #fff;
    padding: 44px 66px 36px 60px;
}
.closeBtn {
    position: absolute;
    cursor: pointer;
    right: 10px;
    top: 10px;
}
.reviewContent__text {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 36px;
}
.reviewContainer {
    display: flex;

    gap: 38px;
}
.reviewHeader {
    max-width: 411px;
    color: #575756;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}
.reviewHeader h3 {
    color: #575756;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}
.reviewHeader >p {
    margin-bottom: 15px;
}
.reviewPerson {
    margin-right: 36px;
}
.reviewPerson input {
    width: 315px;
    padding: 19px 17px;
    border-radius: 9px;
    border: 1px solid #DFE3EA;
    background: rgba(217, 217, 217, 0.00);
}
.reviewPerson input::placeholder {
    color: #DFE3EA;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.reviewPerson label,
.reviewPerson__review label{
    color: #575756;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 12px;
}
.reviewPerson label span {
    color: #DFE3EA;
}
.reviewPerson__rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
}
.ratingHearts {
    display: flex;
    gap: 12px;
}
.review_star-item {
    width: 30px;
    height: 30px;
    background: url(../image/icons/heartEmpty__30.svg) center no-repeat;
}
.review_star-item:hover,
.full-heart {
    cursor: pointer;
    background: url(../image/icons/heartFull__30.svg) center no-repeat;
}
.reviewText textarea {
    border-radius: 9px;
    border: 1px solid #DFE3EA;
}
label.required:after {
    content: "*";
    color: #FF6B98;
    }



@media (max-width: 942px) {
    .shopReview {
        flex-direction: column;
        gap: 20px;
    }
    .reviewContent__btn-reply {
        margin-top: 20px;
    }
    .reviewContainer {
        flex-direction: column;
        gap: 20px;
    }
    .review_wrapper {
        position: relative;
        max-width: 1279px;
        border-radius: 15px;
        border: unset;
        background-color: #fff;
        padding: 34px 34px 36px 34px;
    }
}
@media (max-width: 462px) {
    .review_wrapper {
        padding: 24px 15px;
        margin: 0;
    }
}