*{
padding: 0;
margin: 0;
font-family: sans-serif;
box-sizing: border-box;

}



header{
    width: 100%;
    height: 54px;

}

.container{
    display: flex;
position: fixed;
    padding: 5px;
    width: 100%;
    background: rgb(255, 255, 255);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
user-select: none;
z-index: 10;

}


/*  */
.container .logo{
   margin-left: 5px;

}
.container .logo a svg{
    width: 40px;
height: 40px;
    
}


/*  */
.container .search{
    display: flex;
    height: 100%;
    margin-left: 9px;
    padding:2px;
    background: #f0f2f5;
    border-radius: 20px;
position: relative;
width: 260px;
}
.search .icon{
    margin-top: 7px;
}
.search .icon svg{
width: 25px;
height: 25px;

}
.container .search .input input{
    margin-top: 4px;
color: rgb(54, 49, 49);
background: none;
line-height: 35px;
font-size: 16px;
border: none;
outline: none;
padding:0 8px;

}



/*  */
 .container .menu{
display: flex;
width: 400px;
left: 50%;
top: 3px;
position: absolute;
transform: translateX(-50%);
}

.menu ul{
list-style: none;
display: flex;
padding:0 -2px;
}
.menu ul li {
border-radius: 10px;
text-align: center;
line-height: 60px;
width: 80px;
height: 48px;
margin: 0 3px;
cursor: pointer;

}
    
 .menu ul li svg {
    width: 25px;
    height: 25px;
   fill: #8c9197;


}

.menu ul li:hover {
background:#DADDE1 ;
}

.menu ul li svg:focus {

   fill: #3578E5;
} 

 .menu ul .border-bottom {
border-bottom:3px solid blue;
position: absolute;
width: 80px;
height: 48px;
z-index: -1;

}

#active{
    fill: #3578E5;

} 

/*  */
.container .control{
 display: flex;
right: 5px;
position: absolute;

}

.control ul{
list-style: none;
display: flex;
padding:  5px;
text-align: center;

}
.control ul li{
background: #f0f2f5;
    margin:0 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
line-height: 35px;
cursor: pointer;
padding: 5px;
z-index: 30;

}
    





.control ul li svg{
width: 18px;
height: 18px;

}

 .control ul li svg.more{
    width: 30px;
    height: 30px;

margin-left: -2px;
    } 




/*  =================================================  */
.container .user-profile{
    display: flex;
    position: absolute;
    right: 230px;
height: 40px;
top: 10px;
    align-items: center;
    border-radius: 40px;
    width: 140px;
    font-weight: 600;
cursor: pointer;
user-select: none;
}
.container .user-profile:hover{
    background: rgb(238, 236, 234);
}

.user-profile .user-photo{
    margin: 10px;
    width: 30px;
    height: 30px;
border-radius: 50%;
}




.user-profile .user-photo img{
    width: 100%;
   height: 100%;
object-fit: cover;
border-radius: 50%;
}


















