#menu p a {    
    text-decoration: none;
    list-style: none;
    color: black;
}
#menu {
    border: 1px solid #EEEEEE;
    border-radius: 4px;
}
#menu p {
    border-bottom: 1px solid #eeeeee;
    padding: 15px 20px;
    margin: 0;
}
#menu p:hover {
	background-color: #eeeeee;
	cursor: pointer;
}
#menu p:last-child {
    border-bottom: 0;
}
.menu_admin p {
    background-color: #183f78;
    color: #fff;
}
.menu_admin p:hover {
    background-color: #1d3354 !important;
}
#menu.menu_admin p a {
    color: white;
}
.menu-detail-active {
    background-color: #eeeeee !important;
}
.menu_admin p.menu-detail-active {
    background-color: #1d3354 !important;
}

/* Dropdown menu */
ul.menu-list {
    list-style: none;
    padding-left: 15px;
}
.menu-list .menu-list {
    max-height: 0;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}
.menu-item.has-child.active > .menu-list{
    max-height: 500px;
    transition: max-height 0.3s ease-out;
}
.menu-item.has-child a.menu-item-btn svg {
    transform: rotate(-90deg);
}
.menu-item.has-child.active > a.menu-item-btn svg{
    transform: rotate(0deg);
    transition: all 0.3s linear;
}
.menu-list li:hover {
    cursor: pointer;
}
.menu-list li p{
    margin-bottom: 0;
}
.menu-list li a {
    text-decoration: none;
    color: #000;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.menu-container {
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    /* padding: 0 15px !important; */
}
.menu-item a{
    border-bottom: 1px solid #eeeeee;
    padding: 15px 30px;
    margin: 0;
}
.menu-item a:hover {
    background-color: #eeeeee !important;
}
.menu-item:not(.has-child) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.menu-item:last-child {
    /* border-bottom: none; */
}
.menu-detail-active {
    
}