.feedback-after-purchase__wrapper {
    padding: 40px 0;
}

.feedback-after-purchase {
    max-width: 890px
}

.feedback-after-purchase__completed {
    display: none;
    max-width: 890px;
    text-align: center;
}

.feedback-after-purchase__box {
    margin-bottom: 40px;
}

.feedback-after-purchase__title {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 150%;
}
.feedback-after-purchase__text {
    font-size: 1.3em;
    color: var(--fg-lower);
    margin-bottom: 24px;
}

.feedback-after-purchase__question {
    margin-bottom: 20px;
    font-family: 'Proxima Nova';
    font-size: 18px;
    line-height: 150%;
    color: #666666;
}

.feedback-after-purchase__textarea {
    width: 100%;
    height: 130px;
    padding: 10px 15px;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    box-sizing: border-box;
    resize: none;
    background-color: #fff
}

.feedback-after-purchase__textarea:focus {
    outline: 0
}

.feedback-after-purchase__textarea-hide {
    display: none;
}

.feedback-after-purchase .title {
    margin-bottom: 20px;
    display: flex;
    font-family: "PT Serif";
    font-size: 25px;
    line-height: 150%;
    color: #000
}

@media (max-width: 767px) {
    .order-success-info__btns {
        margin-bottom: 20px;
        flex-direction: column
    }

    .order-success-info__btn:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px
    }

    .feedback-after-purchase .title {
        font-size: 20px
    }
}

.feedback-after-purchase .title__number {
    width: 36px;
    margin-right: 20px
}

.feedback-after-purchase__review {
    padding-left: 56px;
    box-sizing: border-box
}

.feedback-after-purchase__btn-default {
    padding: 13px 54px;
    border-radius: 5px;
    border: none;
    display: inline-block;
    font-family: 'Lora';
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    background-color: #c71d3e;
    cursor: pointer;
}

.feedback-after-purchase__btn-default:hover {
    color: #fff;
    cursor: pointer;
}

@media (max-width: 767px) {
    .feedback-after-purchase__review {
        padding-left: 0
    }
}

.feedback-after-purchase .checkbox {
    margin-bottom: 20px;
    display: flex
}

.feedback-after-purchase .checkbox__input {
    display: none
}

.feedback-after-purchase .checkbox__text {
    display: flex;
    font-family: "Proxima Nova";
    font-size: 14px;
    line-height: 150%;
    color: #666;
    cursor: pointer
}

.feedback-after-purchase .checkbox__text::before {
    content: "";
    display: inline-flex;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    border: 1px solid #666;
    border-radius: 2px;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-grow: 0;
    background-color: #fff;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .25);
    cursor: pointer
}

.feedback-after-purchase .checkbox > .checkbox__input:not(:disabled):checked + .checkbox__text::before {
    background-image: url(images/checkbox-mark-red.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%
}

.feedback-after-purchase .checkbox__other > .checkbox__input:not(:disabled):checked + .feedback-after-purchase__textarea {
    background-color: red;
}

.stars__rate__wrap {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.stars__rate__wrap label {
    display: block;
    width: 30px;
    height: 25px;
    cursor: pointer;
    margin: 0;
    padding-right: 5px;
}
.stars__rate__wrap label path {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.stars__rate__wrap input[type="radio"] {
    display: none;
}
.stars__rate__wrap > input:checked ~ label path,
.stars__rate__wrap > input + label:hover ~ label path,
.stars__rate__wrap > input + label:hover path {
    fill: #FABC09;
}
.stars__rate__wrap:hover > input + label path {
    fill: #FFF;
}
.stars__rate__wrap:hover > input + label:hover ~ label path,
.stars__rate__wrap:hover > input + label:hover path {
    fill: #FABC09;
}