/* for deskstop view*/
@media screen and (min-width:640px){
    body{
        margin-top: 32px;
    }
    .users_dash{
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .users_dash-row{
        width: 100%;
    }
    .users_dash-row::after{
        display: table;
        clear: both;
        content: '';
    }
    .users_dash-col-1{
        width: 15%;
        float: left;
        background-color: #4285f4;
    }
    .users_dash-col-2{
        width: 85%;
        float: left;
    }
    .list-menu-contain{
        bottom: 0;
        top: 32px;
        height: 100%;
    }
    .user-profile{
        padding-top: 12px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid slategray;
    }
    .pic{
        font-family: Georgia, 'Times New Roman', Times, serif;
        font-style: oblique;
        font-size: 1rem;
        font-variant: normal;
        font-weight: bolder;
    }
    .pic img{
        border-radius: 50%;
        border: 5px solid white;
    }
}