#feedbackModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}
#feedbackModal .modal-body {
    padding-bottom: 0;
}
#feedbackModal .modal-footer {
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
}


#feedbackModal .feedback_title {
    font-size: 1rem;
    margin-top: 15px;
    font-weight: 500;
}

#feedbackModal textarea {
    font-size: 1em;
    resize: none;
}
#feedbackModal input[type="text"] {
    font-size: 1em;
    resize: none;
}


.feedback-radio_btn {
    display: inline-block;
    margin-right: 10px;
    width: 100%;
}
.feedback-radio_btn:last-child {
    margin-right: 0;
}
.feedback-radio_btn input[type=radio] {
    display: none;
}
.feedback-radio_group {
    display: flex;
    justify-content: center;
}
.feedback-radio_btn label {
    display: inline-block;
    cursor: pointer;
    padding: 0 15px;
    line-height: 34px;
    border: 1px solid var(--blue-light);
    border-radius: 6px;
    user-select: none;
    transition: .1s;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}
.feedback-radio_btn label:hover {
    border-color: #ecf4fc;
    background: #ecf4fc;
}
.feedback-radio_btn input[type=radio]:checked + label {
    background: var(--blue-light);
    color: #fff;
}
.feedback-radio_btn label:hover {
    color: var(--gray);
}
.feedback-radio_btn input[type=radio]:disabled + label {
    background: var(--gray-bg);
    color: var(--gray);
    cursor: default;
}
.feedback-radio_subtitle p {
    margin-bottom: 0;
    color: #8b9095;
}