.div-ct-user{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 5px;
    color: #757575;
    border: 1px solid #000000;
    border-left: 0;
    border-right: 0;
	border-top: 0;
}

.div-user{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 5px;
}

.img-user{
	display: block;
	width: 100%;
    max-width: 120px;
    border-radius: 50%;
    border: 1.5px solid #757575;
	margin: auto;
    padding: 3px;
}

.img-user:hover{
	border: 2px solid #FFFFFF;
}

.sidebar{
	z-index: 1000;
    position: fixed;
    margin: 0;
    padding: 0;
    width: 200px;
    top: 50px;
    bottom: 0;
    background: #212121;
    border: 1px solid #000000;
    border-left: 0;
	border-bottom: 0;
}

.item-sidebar{
    text-decoration: none;
    display: block;
    margin: 0;
    height: 40px;
    padding: 9px;
    border-bottom: 1px solid #000000;
    color: #757575;
    background: #212121;
    border: 0;
    border-top: 1px solid #000000;
	white-space: nowrap;
	overflow: hidden;
}

.text-item-sidebar{
	padding-left: 10px;
}

.item-sidebar:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom: 1px solid #000000;
}

.item-sidebar:hover{
    color: #FFFFFF;
    background-color: #000000;
}

.item-sidebar:active{
    text-decoration:none; 
    color: #FFFFFF;
    background-color: #000000;
}

.item-sidebar:link { 
    text-decoration:none; 
}

.item-sidebar:visited { 
    text-decoration:none; 
} 

@media only screen and (max-width: 600px){
    .div-user{
        display: none;
    }
    .sidebar{
        position: fixed;
        width: 100%;
        height: 40px;
        margin: 0;
        padding: 0;
        bottom: 0;
        top: auto;
        right: 0;
        left: 0;
        border: 0;
        border-top: 1px solid #000000;
        display: flex;
        justify-content: center;
    }
    .text-item-sidebar{
        display: none;
    }
    
    .item-sidebar{
        display: inline-block;
        width: 33.3%;
        float: left;
        text-align: center;
        border: 0;
        border-left: 1px solid #000000;
    }
    
    .item-sidebar:first-child{
        border-left: 0;
    }
    
    .item-sidebar:last-child{
        border-right: 0;
    }
}
