.profile-modal {}
.profile-modal .profile-block {
    border-radius: 24px;
    background: #161C2D;
    padding: 15px;
}
.profile-modal .profile-block .profile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile-modal .profile-block .profile-top .avatar-block {
    width: 80px;
    height: 80px;
    border: 2px solid #4facfe;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-modal .profile-block .profile-top .avatar-block img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
}
.profile-modal .profile-block .profile-top .profile-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.profile-modal .profile-block .profile-top .profile-info .status {
    border-radius: 24px;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    padding: 4px 7px;
    gap: 2px;
    width: fit-content;
    align-items: center;
}
.profile-modal .profile-block .profile-top .profile-info .status.unverified {
    background: #4F546A;
    color: #161C2D;
}
.profile-modal .profile-block .profile-top .profile-info .status.required-verification {}
.profile-modal .profile-block .profile-top .profile-info .status.verified {
    background: #3BDF42;
    color: #161C2D;
}
.profile-modal .profile-block .profile-top .profile-info .status svg {}
.profile-modal .profile-block .profile-top .profile-info .profile-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.profile-modal .profile-block .profile-top .profile-info .name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.profile-modal .profile-block .profile-top .profile-info .userId {
    color: #4f546a;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}
.profile-modal .profile-block .profile-top .profile-info .userId svg {
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.profile-modal .profile-block .profile-top .profile-balance-block {
    border-radius: 24px;
    background: #101626;
    display: flex;
    height: 40px;
    padding: 15px;
    gap: 10px;
    align-items: center;
}
.profile-modal .profile-block .profile-top .profile-balance-block .icon {
    display: flex;
    align-items: center;
}
.profile-modal .profile-block .profile-top .profile-balance-block .icon svg {}
.profile-modal .profile-block .profile-top .profile-balance-block .balance-info {
    display: flex;
    flex-direction: column;
    color: #4f546a;
    font-size: 12px;
    font-weight: 400;
}
.profile-modal .profile-block .profile-top .profile-balance-block .balance-info span {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}
.profile-modal .profile-block hr {}
.profile-modal .profile-block .profile-bottom {}
.profile-modal .profile-block .profile-bottom .system-notice {
    display: flex;
    align-items: center;
    border-radius: 14px;
    padding: 10px 15px;
    border: 1px solid #2E354A;
    background: radial-gradient(201.37% 34.27% at 100% 50%, #2E354A 0%, #161C2D 100%);
}
.profile-modal .profile-block .profile-bottom .system-notice .alert {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.profile-modal .profile-block .profile-bottom .system-notice .alert .title {
    font-size: 12px;
    font-weight: 600;
}
.profile-modal .profile-block .profile-bottom .system-notice .alert .text {
    font-size: 12px;
    font-weight: 400;
    margin-top: 0;
}
.profile-modal .profile-block .profile-bottom .system-notice .arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-modal .profile-block .profile-bottom .system-notice .arrow svg {}

.profile-modal .profile-block .profile-bottom .system-notice.danger .arrow svg {
    stroke: #B13C3C;
}

.profile-modal .profile-block .profile-bottom .system-notice.danger .title {
    color: #B13C3C;
}
.profile-modal .profile-block .profile-bottom .system-notice.danger {
    border: 1px solid #3F2031;
    background: linear-gradient(90deg, #161C2D 60%, #3C2031 100%);
}


.profile-modal .profile-block .profile-bottom .system-notice.success .arrow svg {
    stroke: #46B13C;
}

.profile-modal .profile-block .profile-bottom .system-notice.success .title {
    color: #46B13C;
}
.profile-modal .profile-block .profile-bottom .system-notice.success {
    border: 1px solid #203F30;
    background: linear-gradient(90deg, #161C2D 60%, #1F3B34 100%);
    cursor: pointer;
}


.profile-block .profile-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile-block .profile-input:first-child {}
.profile-block .profile-input:last-child {}
.profile-block .profile-input .profile-input-block {}
.profile-block .profile-input .profile-input-block .label {
    font-size: 14px;
    color: #4f546a;
    font-weight: 400;
}
.profile-block .profile-input .profile-input-block .value {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.profile-block .profile-input .profile-input-block .value span {}
.profile-block .profile-input .icon {}
.profile-block .profile-input .icon svg {
    cursor: pointer;
} 

@media (max-width: 460px) {
    .profile-modal .profile-block .profile-top .profile-balance-block {
        display: none;
    }

    .profile-modal .profile-block .profile-top {
        justify-content: flex-start;
        gap: 20px;
    }
}