#bg-user-profile {
    position: relative;
    height: 70px;
    background: #f2f2f2;
    margin-bottom: 80px;
}

#user-profile {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 20px;
    left: 50%;
    margin-left: -55px;
    border-radius: 60px;
    background: #e1e1e1;
    border: 5px solid #fff;
}

.menu-lateral {
    display: grid;
    grid-template-columns: 250px 1fr;
}

.menu-lateral > div:first-child {
    background: white; 
    padding: 20px; 
    max-width: 250px;
}

.menu-lateral > div:last-child {
    box-sizing: border-box;
    padding: 40px;
}

.deco-redondo {
    width: 40px;
    height: 40px;
    background: #ECF4FC;
    border-radius: 21px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #004F9B;
    font-size: 1.1em;
}

#menu-ul li {
    padding: 8px 12px;
    font-size: 0.9em;
    border-radius: 8px;
    display: flex;
    margin: 4px 0;
}

#menu-ul li.active {
    background-color: #ECF4FC;
    font-weight: 600;
    color: #004F9B;
}

#menu-ul li:not(.active):hover {
    color: #004F9B;
    cursor: pointer;
}
#menu-ul li i {
    font-size: 0.9em;
    margin-right: 4px;
    color: #111;
    min-width: 18px;
}

#user-menu-cont {
    width: 180px; 
    padding-right: 20px; 
    align-self: flex-start;
}


@media only screen and (max-width: 800px) {

    .menu-lateral {
        display: block;
    }

    .menu-lateral > div:first-child {
        display: none;
    }

    .menu-lateral > div:last-child {
        margin:0 30px; 
        padding: 40px 0;
    }

}
