.menu-open{
    display: flex;
    line-height: 50px;
    flex: 0 0 50px;
    place-items: center;
    place-content: center;
    position: relative;
    background: var(--secondary);
    margin-left: -20px;
}
.nav{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 300px;
    height: 300px;
    flex-direction: column;
    background:var(--primary);
    z-index: 3;
    gap: 0;
    overflow: auto;
    display: none;
    border: 15px solid var(--primary);

}
.menu-open.aktif::before{
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(100% + 1px);
    left: 15px;
    background-color: var(--primary);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.nav li {
    padding: 0;
    line-height: 30px;
    width: 100%;
}
.nav > li:has(.active){
    background: none;
}
/* icon */
.nav li .dropli{
    top: 15px;
}
.nav li ul {
    position: unset;
    width: 100%;
}
.nav li ul li ul{
    top:unset;
    left: unset;
    border-left: unset;
}
.nav > li ul{
    border-top: none;
    background: #ffffff31;
    border-left: 2px solid var(--secondary);
}
.nav ul ul{
    background: none;
}
::-webkit-scrollbar{
    display: none;
}