.popup_find_job .container_pp {
    margin: 30px auto;
    width: 500px;
    max-width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    height: 160px;
}
.popup.popup_find_job {
    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;
}
.popup_find_job .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_find_job .title_pp {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    text-align: center;
    font-family: roboto;
}
.popup_find_job .box_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.popup_find_job .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;
}
.popup_find_job .btn.btn_yes {
    background: #025351;
}
.popup_find_job .btn.btn_no {
    background: grey;
}