/* header */
header {
    width: 300px;
    background-color: #263035;
}
header h1{
    color:  white !important;
}
header div{
    display: flex;
    justify-content: space-between;
    margin: auto;
    flex-direction: column;
    width: inherit;
    position: fixed;
}
header .btn-dropdown.opened{
    border-left: 5px solid #007BFF;
}
header nav{
    width: 100%;
}
header nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
header nav ul li a{
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    color: white;
    text-align: left;
}
header nav ul li a img{
    width: 20px;
    height: auto;
    margin-right: 7px;
}
header .btn-dropdown{
    border: none !important;
}
header nav ul li ul{
    background-color: #2e3d43;
}
header nav ul li ul li a{
    padding: 15px 30px !important;
}
header nav ul li a:hover{
    background-color: #2e3d43;
    color: white;
}
@media (max-width: 800px){
    header nav ul li{
        width: 100%;    
    }
}
.notification{
    padding: 3px;
    color: white;
    background-color: #F05336;
    border-radius: 100%;
    margin: 0 2px;
    width: 15px;
    font-size: 12px;
    text-align: center;
    /* position: absolute; */
    font-weight: 600;
}

/*Menu mobile*/

#menu-desktop{
    display: block;
}

#menu-mobile{
    display: none;
}

#menu-mobile nav{
    position: fixed;
    background-color: white;
    height: 100vh;
    transform: translateX(-100%);
    transition: 1s ease;
    z-index: 999;
    margin: 70px 0 0 0;
    background-color: #263035;
    overflow: auto;
}

#menu-mobile.opened nav{
    transform: translateX(0);
    max-width: 100vw;
}

#menu-mobile-btn{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#menu-mobile.opened #menu-mobile-btn{
    display: none;
}

#menu-mobile-close{
    text-align: center;
    /* color: #007BFF; */
    color: white;
    font-size: 30px;
    font-weight: bolder;
    display: none;
}

#menu-mobile-btn, #menu-mobile-close{
    height: 50px;
    width: 50px;
    padding: 5px;
    border: none;
    float: right;
    /* background-color: white; */
    background-color: #263035;
    margin: 0 10px;
}

#menu-mobile.opened #menu-mobile-close{
    display: block;    
}

#menu-mobile hr{
    /* background-color: #007BFF; */
    background-color: white;
    border: none;
    height: 5px;
    width: 100%;
    border-radius: 4px;
}


@media (max-width: 900px){
    header{
        position: fixed;
        border-bottom: 1px solid lightgray;
        max-width: 100vw;
        width: 100% !important;
    }
    header h1{
        margin: 0 10px;
    }
    header div{
        position: relative;
        flex-direction: column;
        width: 100%;
    }
    header nav{
        border-top: #eee 1px solid;
    }
    #menu-mobile{
        display: flex;
        flex-direction: row;    
    }    
    #menu-desktop{
        display: none;
    }
}