.left-nav {
    top: 80px;
    left: 0;
    width: 240px;
    height: 100%;
    overflow: scroll;
    position: fixed;
    background: transparent;
}



.left-nav .list__items {
    display: block;
    margin: 0px 10px;
    overflow: hidden;
}

.active__link {
    background: #a5a5a52a;
}

.left-nav .list__items .list__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.left-nav .list__items .list__button:hover {
    background: #a5a5a52a;

}

.left-nav .list__items .list__button .list_button_text {}

.left-nav .list__items .list__button .list_button_text i {
    color: #4267B2;
    font-size: 16px;
    width: 20px;
}

.left-nav .list__items .list__button .list_button_text span {
    color: #757575;
    font-weight: 500;
    margin-left: 5px;
    font-size: 14px;
}

.left-nav .list__items .list__button .list_button_icon {}

.left-nav .list__items .list__button .list_button_icon i {
    color: #4267B2;
}


.list__items .list__show {
    margin-left: 50px;
    border-left: 1px solid #75757550;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.9s;
}

.left-nav .list__items .active__show {
    display: block;
    max-height: 100%;

}

.list__items .list__show .list__inside {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 10px;
    cursor: pointer;

}


.list__items .list__show .list__inside span {
    color: #757575;
    font-weight: 500;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.list__items .list__show .list__inside:hover {
    background: #f0f0f0;
}

.list__items .list__show .list__inside:hover.list__inside span {
    margin-left: 10px;
}

.list__items .list__show .list__inside .count {
    background: rgba(33, 182, 28, 0.144);
    padding: 2px 4px;
    border-radius: 5px;
    font-size: 12px;
    color: green;
}

@media screen and (max-width: 1024px) {}


@media screen and (max-width: 720px) {
    .left-nav {
        display: none;
    }
}