.popupCVAI {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}
.popupCVAI .container_pp {
    margin: 30px auto;
    max-width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
}
.popup_changecv_ai .container_pp {
    width: 500px;
    height: 160px;
}
.popup_changecv_ai .popup_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 20px;
    border-radius: unset;
    box-shadow: unset;
    transform: unset;
    height: 100%;
}
.popup_changecv_ai .title_pp {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    text-align: center;
}
.popupCVAI .box_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.popupCVAI .btn {
    border: none;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0;
    min-width: 95px;
    cursor: pointer;
}
.popupCVAI .btn.btn_saveCv, 
.popup_changecv_ai .btn.btn_yes {
    background: #4C5BD4;
}
.popupCVAI .btn.btn_next, 
.popup_changecv_ai .btn.btn_no {
    background: grey;
}

.popup_showcv_ai .container_pp {
    width: 850px;
}
.popupCVAI .header_pp {
    width: 100%;
    background: #4C5BD4;
    border-radius: 5px 5px 0 0;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.popup_showcv_ai .title_pp {
    font-size: 20px;
    line-height: 24px;
    color: #FFF;
    margin: 0;
    padding: 0;
    font-weight: 600;
}
.popupCVAI .btn_close {
    border: none;
    background: transparent;
    margin: 0;
    padding: 0;
    width: 25px;
    height: 25px;
}
.popupCVAI .close_pp {
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.popupCVAI.popup_loadcv_ai .container_pp {
    background: transparent;
}
.txt_loadcv_ai {
    font-size: 18px;
    line-height: 22px;
    color: #FFF;
    font-weight: 600;
}
.content_pp_loadcv_ai {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}
.img_loadcv_ai {
    width: 280px;
    height: 200px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
}
.box_img_cvai {
    max-height: 550px;
    overflow: auto;
}
.img_cvai {
    width: 100%;
    height: 100%;
}