.content_users_profile .users_main_title {
    margin-top: 20px;
}
.users_profile_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: var(--green-200);
    height: 220px;
    overflow: hidden;
    z-index: -1;
}
.users_profile_bg .users_profile_bg_circle {
    border-radius: 50%;
    background-color: var(--gray-50);
    position: absolute;
    width: 300vw;
    height: 300vw;
    left: -100vw;
    top: 175px;
}
@media (min-width: 1000px) {
    .users_profile_bg .users_profile_bg_circle {
        width: 4000px;
        height: 4500px;
        left: -1500px;
        top: 149px;
    }
}
.users_profile_image {
    margin-top: 50px;
    position: relative;
    border-radius: 50%;
    background-color: var(--gray-50);
    padding: 5px;
    width: 88px;
    height: 88px;
    cursor: pointer;
    margin-bottom: 17px;
}
.users_profile_image img {
    border-radius: 50%;
}
.users_profile_image .parent_image_edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
}
.users_profile_image .parent_image_edit svg {
    width: 28px;
    height: 28px;
}
.users_profile_image .parent_image_remove {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #FDE6E6;
    border: 2px solid #F6F6F6;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.users_profile_image .parent_image_remove.parent_image_remove--hidden {
    display: none;
}
.users_profile_image .parent_image_remove svg {
    width: 11px;
    height: 14px;
}
#parent_image_edit_input {
    display: none;
}
.users_profile_name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}
.users_profile_phone {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 35px;
}
.users_profile_item {
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    background-color: #fff;
    margin-bottom: 15px;
    padding: 0 20px;
}
.users_profile_item .users_profile_item_item {
    display: flex;
    align-items: center;
    height: 48px;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
}
.users_profile_item .users_profile_item_item:last-child {
    border-bottom: none;
    height: 47px;
}
.users_profile_item .users_profile_item_item .users_profile_item_icon {
    margin-right: 17px;
}
.users_profile_item .users_profile_item_item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-950);
}
.users_profile_item .users_profile_item_item .users_profile_item_arrow {
    margin-left: auto;
}
.users_profile_item .users_profile_item_item .users_profile_item_arrow svg path {
    stroke: var(--gray-950);
}
.content_security_code {
    position: relative;
}
.make_security_code_points,
.enter_security_code_points {
    display: flex;
    justify-content: space-between;
    width: 112px;
    margin: 0 auto;
}
.make_security_code_points .make_security_code_point,
.enter_security_code_points .enter_security_code_point {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
}
.make_security_code_points .make_security_code_point.active,
.enter_security_code_points .enter_security_code_point.active {
    background-color: var(--gray-950);
}
.make_security_code_keyboard,
.enter_security_code_keyboard {
    width: 282px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.make_security_code_keyboard .make_security_code_keyboard_item,
.enter_security_code_keyboard .enter_security_code_keyboard_item {
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.make_security_code_keyboard .make_security_code_keyboard_item .make_security_code_keyboard_digit,
.enter_security_code_keyboard .enter_security_code_keyboard_item .enter_security_code_keyboard_digit {
    width: 72px;
    height: 72px;
    border: 2px solid var(--gray-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-size: 28px;
    font-weight: 600;
    cursor: pointer;
}
.content_security_code .h1_wrapper {
    position: relative;
}
.content_security_code .error_text_block {
    position: absolute;
    bottom: -60px;
    left: 0;
}
.content_security_code .forgot_security_code {
    text-decoration: none;
    color: var(--gray-950);
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}
.content_users_documents .homepage_contracts {
    margin-top: 50px;
}
.content_users_document {
    text-align: center;
}
.content_users_document .document_number {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
}
.content_users_document .document_pzo {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}
.content_users_document .document_title {
    margin-bottom: 30px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
}
.content_users_document .document_status {
    margin-bottom: 30px;
    margin-left: -20px;
    margin-right: -20px;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 500;
}
.content_users_document .document_body {
    height: 100%;
    margin-bottom: 40px;
    background-color: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    position: relative;
}
.content_users_document .document_body iframe {
    background-color: #fff;
    border-radius: 8px;
}
.content_users_document .document_body .hide_download {
    position: absolute;
    width: 85px;
    height: 20px;
    border-radius: 8px;
    bottom: 1px;
    right: 1px;
    z-index: 5;
    background-color: #fff;
}
.content_users_document #sing_contract {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
}
.footer-info-logout .footer-info-cancel-title {
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-info-logout .footer-info-cancel-description {
    margin-bottom: 40px;
}

.footer-info-logout .wf_btn {
    margin-top: 20px;
}
.content_setup_biometric > div:last-child {
    width: 100%;
}
.content_setup_biometric .wf_btn + .wf_btn {
    margin-top: 16px;
}