/* =========================================================
   USER MENU OVERLAY
   ========================================================= */

.user-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 110px 20px 20px;

    background: rgba(7, 15, 30, 0.28);
}

.user-menu-overlay[hidden] {
    display: none;
}


/* =========================================================
   USER MENU
   ========================================================= */

.user-menu {
    width: 100%;
    max-width: 340px;
    
    position:relative;
    
    background: #ffffff;
    color: #152238;

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28);

    overflow: hidden;
}

/*==================================================
  CLOSE
==================================================*/

.user-menu-close{

    position:absolute;

    top:14px;
    right:16px;

    width:36px;
    height:36px;

    border:0;
    border-radius:50%;

    background:#eef1f5;

    color:#152238;

    font-size:24px;
    line-height:1;

    cursor:pointer;

}

.user-menu-close:hover{

    background:#dfe4eb;

}

/* =========================================================
   HEADER
   ========================================================= */

.user-menu-header {
    padding: 22px 22px 18px;

    border-bottom: 1px solid #e6eaf0;
}

.user-menu-name {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.user-menu-email {
    margin-top: 5px;

    color: #667085;

    font-size: 14px;
    line-height: 1.4;

    overflow-wrap: anywhere;
}


/* =========================================================
   ITEMS
   ========================================================= */

.user-menu-item {
    width: 100%;

    padding: 15px 22px;

    border: 0;

    background: #ffffff;
    color: #152238;

    text-align: left;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.user-menu-item:hover {
    background: #f3f5f8;
}

.user-menu-item:active {
    background: #e9edf2;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .user-menu-overlay {
        align-items: flex-end;
        padding: 12px;
    }

    .user-menu {
        max-width: none;
        position:relative;
        border-radius: 18px 18px 12px 12px;
    }

}