.popup.popup_find_job {
    background: rgba(0, 0, 0, 0.35);
    position: fixed;
    background: rgba(0, 0, 0, 0.35);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.popup_find_job .popup_content {
    width: 550px;
    position: relative;
    padding: 50px 25px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #fff;
    border-radius: 20px;
}

.popup_find_job .btn_close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    background: #ccc;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.popup_find_job .popup_content .text {
    font-size: 16px;
    line-height: 150%;
    font-weight: 700;
    text-align: center;
}

.popup_find_job .popup_content .box_button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.popup_find_job .popup_content .box_button button {
    width: 85px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 25px;
    background: #451da0;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.popup_find_job .popup_content .box_button button.btn_no {
    background: grey;
}