#feedbackModal .modal-header {
    border-bottom:  1px solid #f2f2f2;
    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: 8px;
    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 8px;
    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;
}

.feedback-checkbox_group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.feedback-checkbox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.feedback-checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    margin: 0 8px 0 0;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
}

.feedback-checkbox input:checked {
    background-color: var(--blue-light);
    border-color: var(--blue-light);
}

.feedback-checkbox input:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.feedback-checkbox label {
    padding: 2px 15px;
    margin: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

@media (hover: hover) {
    .feedback-checkbox:hover input:not(:checked) {
        border-color: var(--blue-light);
    }
}