.ei-member-menu{
    width:100%;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* HEADER */

.ei-member-header{
    background:#374572;
    color:#fff;
    text-align:center;
    padding:25px 20px;
}

.ei-member-avatar{
    margin-bottom:15px;
}

.ei-member-avatar img{
    width:80px;
    height:80px;
    border-radius:50%;
    border:3px solid #fff;
}

.ei-member-header h3{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#fff;
}

.ei-member-header p{
    margin:8px 0 0;
    color:#E7F6FF;
    font-size:14px;
    word-break:break-word;
}

/* MENU */

.ei-member-links{
    padding:15px;
}

.ei-member-links a{
    display:block;
    text-decoration:none;
    background:#fff;
    color:#374572;
    padding:14px 16px;
    margin-bottom:10px;
    border-radius:10px;
    border:1px solid #ececec;
    font-weight:600;
    transition:.25s ease;
}

.ei-member-links a:hover{
    background:#F3C951;
    color:#374572;
}

.ei-member-links a.logout{
    background:#374572;
    color:#fff;
}

.ei-member-links a.logout:hover{
    background:#2b385e;
}

/* MOBILE */

@media (max-width:767px){

    .ei-member-header{
        padding:20px 15px;
    }

    .ei-member-avatar img{
        width:70px;
        height:70px;
    }

    .ei-member-header h3{
        font-size:18px;
    }

    .ei-member-header p{
        font-size:13px;
    }

    .ei-member-links{
        padding:12px;
    }

    .ei-member-links a{
        font-size:14px;
        padding:13px;
    }

}

/* =======================================================
   ACCOUNT BUTTON
======================================================= */

.ei-account-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    width:38px;
    height:38px;

    text-decoration:none;

}

.ei-account-btn svg{

    width:24px;
    height:24px;

    stroke:#374572;

    transition:.25s;

}

.ei-account-btn:hover svg{

    stroke:#F3C951;

}

/* =======================================================
   AVATAR MEMBER
======================================================= */

.ei-avatar{

    width:36px;
    height:36px;

    border-radius:50%;

    background:#374572;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;

    font-size:16px;

    transition:.25s;

}

.ei-avatar:hover{

    background:#F3C951;

    color:#374572;

}

/* =======================================================
   AVATAR FOTO
======================================================= */

.ei-account-btn img{

    width:36px;
    height:36px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid #374572;

    transition:.25s;

}

.ei-account-btn img:hover{

    border-color:#F3C951;

}

/* ==========================================
   PASSWORD TOGGLE
========================================== */

.ei-password-wrapper{

    position:relative;

}

.ei-password-wrapper input{

    padding-right:45px !important;

}

.ei-password-toggle{

    position:absolute;

    right:15px;

    top:50%;

    transform:translateY(-50%);

    cursor:pointer;

    user-select:none;

    font-size:18px;

    color:#666;

}

.ei-password-toggle:hover{

    color:#374572;

}