.feedback_modal .send:hover {
    box-shadow: 0 0 6px 0 rgba(64,57,31,.7)
}

.feedback_modal {
    box-shadow: 0 0 24px 0 rgba(178,178,178,.5)
}

.feedback_modal.hidden {
    visibility: hidden;
    display: none
}

.feedback_modal .send {
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer
}

.feedback_modal .send {
    font-family: "Source Sans Pro",sans-serif
}

.feedback_modal, .feedback_modal textarea {
    background-color: #fff
}

.feedback_modal .send {
    margin: 24px auto 0;
    background-color: #f8e71c;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 0 4px 0 rgba(155,155,155,.3)
}

.feedback_modal {
    position: absolute;
    top: 5%;
    left: 0
}

.feedback_modal .answers input[type=radio]:checked + label:before {
    background-color: #f8e71c;
    border-radius: 3px;
    background-image: url(/images/steps/2check.png);
    background-position: center;
    background-repeat: no-repeat;
    border-color: #f8e71c
}

.feedback_modal {
    top: -50px;
    padding-left: 18px;
    padding-top: 50px;
    height: 720px;
    width: 795px;
    border-radius: 6px
}

.feedback_modal .head {
    text-align: center;
    font-size: 18px;
    color: #354052
}

.feedback_modal .questions {
    padding: 20px 0 0
}

.feedback_modal .answers {
    position: relative;
    border: 1px solid #f1f1f1;
    padding: 5px 7px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.feedback_modal .answers input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -1
}

.feedback_modal .answers label {
    display: inline-block;
    font-size: 16px;
    color: #354052;
    line-height: 27px;
    margin: 0;
    padding-left: 35px;
    padding-right: 10px;
    position: relative;
    cursor: pointer
}

.feedback_modal .answers label::before {
    content: "";
    width: 26px;
    height: 26px;
    border: 2px solid #e6ebf0;
    border-radius: 3px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0
}

.feedback_modal form {
    padding: 0 60px 0 40px
}

.feedback_modal form label {
    margin-top: 16px;
    margin-bottom: 15px;
    display: block;
    line-height: 18px
}

.feedback_modal textarea {
    height: 123px;
    width: 100%;
    font-size: 13px;
    padding: 5px 10px;
    border: 1px solid #f1f1f1;
    border-radius: 6px;
    resize: none
}

.feedback_modal textarea:placeholder-shown {
    color: rgba(230,235,240,.5);
    font-family: "Source Sans Pro",sans-serif;
    font-size: 14px;
    line-height: 18px;
    resize: none;
    text-transform: capitalize
}

.feedback_modal .send {
    display: block;
    padding: 8px 37px;
    border-radius: 3px;
    border: 0;
    appearance: none;
    font-size: 14px;
    line-height: 18px;
    color: #312852;
    -webkit-transition: box-shadow .4s;
    transition: box-shadow .4s
}

@media screen and (max-width:768px) {
    .feedback_modal {
        width: 100%;
        height: 100%;
        left: 0;
        max-height: 500px;
        top: 50px;
        overflow-y: scroll;
        padding-bottom: 140px;
        padding-right: 18px
    }

    .feedback_modal form {
        padding: 0
    }

    .feedback_modal .answers .item {
        margin-bottom: 10px
    }

    .feedback_modal .answers label {
        font-size: 14px
    }
}

@media screen and (max-width:420px) {
    .feedback_modal .answers {
        margin-bottom: 10px;
        flex-direction: column
    }
}