.nav{
    color: #76777b;
    /* background: #f1f1f1; */
    background-color: #2f4050;
}
.nav-children{
    /* position:relative; */
    list-style: none;
    display:none;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 999;
    width: 300px;
    background: #2f4050;
    

}
 .has-children{
    position:relative;
} 

.has-children:hover .nav-children{
    /* display:block; */
}

ul.nav-children li {
    padding: 7px 10px;
}

ul.nav-children {
    padding: 0;
    /* border: 1px solid #eceff1; */
}

ul.nav-children li:hover,li.nav-children-item.active{
    background-color: rgb(108, 148, 185);
}
.user_action_content{
    background-color: white;
    top: 32px;
    right: -2px;
    padding: 5px 20px;
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
    border-radius: 7px;
    z-index:999;
    width:354px;

}
.user_action_content span{
    display:block;
    padding-left:10px;
}
.user_action_content a{
    display:block;
    padding:5px;
    color: #76777b;
}
.triangle{
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 18px solid white;
    position: absolute;
    top: -11px;
    right: 1px;
}

li.nav-item a {
    color: white;
    text-decoration: none;
    display: block;
}

li.nav-item.active > a {
    color: white;
    font-weight: bold;

}

li.nav-children-item.active > a{
    color: white;
    font-weight: bold;
}

li.nav-item.active {
    background-color: #6c94b9;
    position: relative;
    /* border-right: 1px solid #007bff; */
    border-left: 3px solid #0fe0a2;
}
li.nav-item:not(.active):hover > a{
    color:black;
}

