#modal > .modal-content {
    border-radius: 37px;
}

.popup-close-feedback {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
}

.popup-close-feedback img {
    width: 26px;
    cursor: pointer;
}

.feedback_create_wrapper {
    padding: 60px 20px;
    background-color: #1A1717;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border-radius: 37px;
}

.feedback_create-form-name {
    color: #FAFAFA;
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 32px;
}

.feedback_create_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback_create-form-input label {
    margin-top: 0;
}

.star-rating input {
    display: none;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating label {
    cursor: pointer;
    width: 50px;
    height: 50px;
    color: #444;
    transition: color 0.2s;
}

.star-rating label svg {
    display: block;
    width: 100%;
    height: 100%;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #FAFAFA;
}

.star-rating input[type="radio"]:checked ~ label {
    color: #FAFAFA;
}

.ck-editor-container textarea {
    width: 100%;
    height: 10vh;
}

.feedback-image {
    margin-top: 15px;
}

.feedback-image img {
    max-width: 160px;
    max-height: 80px;
}

.feedback-file-input {
    display: none;
}

.custom-file-upload {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #2A2A2A;
    border: 1px dashed #555;
    border-radius: 8px;
    cursor: pointer;
    color: #FAFAFA;
    transition: all 0.3s ease;
    width: fit-content;
}

.custom-file-upload:hover {
    border-color: #FAFAFA;
    background: #333;
}

.custom-file-upload img {
    width: 100%;
}

.buttons_create_feedback {
    display: flex;
    flex-direction: column;
    /*justify-content: flex-end;*/
    gap: 10px;
}

.button_create_feedback_close {
    background-color: #484040;
    color: #FAFAFA;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 500;
    font-size: 20px;
    border: none;
    border-radius: 67px;
    width: 100%;
    padding: 14px;
}

.button_create_feedback_submit {
    background-color: #FECA14;
    color: #050505;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 500;
    font-size: 20px;
    border: none;
    border-radius: 67px;
    width: 100%;
    padding: 14px;
}

@media (min-width: 768px) {
    .feedback_create_wrapper {
        padding: 80px 30px;
    }

    .popup-close-feedback {
        top: 30px;
        right: 30px;
    }

    .buttons_create_feedback {
        flex-direction: row;
    }
}

@media (min-width: 1200px) {
    .feedback_create_wrapper {
        padding: 80px 50px;
    }

    .popup-close-feedback {
        top: 50px;
        right: 50px;
    }
}
