#popup_feedback {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 22, 50, 0.50);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: none;
    opacity: 0;
    z-index: 3000;
}

#popup_feedback_container {

    position: relative;
    display: flex;
    width: 1448px;
    height: 935px;
    padding: 64px 64px 80px 64px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 1px solid var(--white);
    background: rgba(255, 255, 255, 0.80);
   

}

#popup_feedback .close {
    position: absolute;
    top: 20px;
    right: 20px;

}

#popup_feedback .container_feedback {
    display: flex;


}

#popup_feedback .note_feedback {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-left: 35px;
    padding-right: 35px;
    margin-bottom: 16px;
    font-size: 14px;
    /* min-width: 420px; */
   
}

#popup_feedback .container_feedback .title_feedback {
    color: #001632;
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    border-bottom: 11px solid var(--yellow);
    width: fit-content;
}

#popup_feedback .container_feedback .title_feedback h2 {
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
}

#popup_feedback .container_feedback .bubble_feedback {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 24px;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    border-radius: 20px 20px 20px 0;
    background: var(--blue3);
    min-height: 110px;
    max-width: 863px;
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    width: 863px;
}


#popup_feedback .container_feedback .bubble_feedback li {
    list-style-type: disc;
    margin-left: 24px;
}
#popup_feedback .info_feedback {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    left: -60px;
    z-index: 2;

}

#popup_feedback .answer_feedback {
    display: flex;
    padding: 8px 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    color: var(--blue3);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 40px;
    margin-top: 40px;
    width: 863px;
    background-color: var(--white);
}

#popup_feedback .answer_feedback.feedback-good {
    background: #CEF9B3;
}

#popup_feedback .answer_feedback.feedback-error {
    background: #FFB7B7;
}

#popup_feedback .answer_input {
    display: flex;
    flex-grow: 1;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    justify-content: flex-end;
}

#popup_feedback .video_feedback {
    width: 514px;
    height: 514px;
    flex-shrink: 0;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
}

#popup_feedback .container_feedback .bubble_feedback::before {
    content: "";
    position: absolute;
    background-image: url('../medias/images/rounded.svg');
    top: calc(100% - 92px);
    left: -51px;
    width: 52px;
    height: 92px;

}

.feedback_video {
    position: absolute;
    z-index: 1;
}