.side-menu008 {
    margin-top: 30px;
    width: 300px;
}

.side-menu008 .list-header {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;

    border-bottom-style: solid;

    border-bottom-width: 3px;
}

@media (max-width: 1199px) {
    .side-menu008 {
        width: 250px;
    }
}

.side-menu008 .list-header span {
    position: relative;
    padding: 0.5rem 0 0.5rem 12px;
    display: block;
}

.side-menu008 a {
    text-decoration: none;
}

.side-menu008 .item-1 {
    display: flex;
    align-items: center;
    margin: 8px 3px;

    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left-style: solid;
    border-left-width: 4px;

}


.side-menu008 .item-1 a {
    font-size: 18px;
    font-weight: bold;
    position: relative;
}

.side-menu008 .item-1 a.link {
    padding: 10px;
    flex: 1;
}


.side-menu008 .item-1:hover,
.side-menu008 .item-1.open,
.side-menu008 .item-1.active {

    transition: all 0.2s ease-in-out;
}

.side-menu008 .item-1 .sub-icon {
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
}

.side-menu008 .item-1 .sub-icon:before {
    content: '';
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    font-size: 17px;
    position: relative;
    font-weight: bold;
    right: 0;
    top: 2px;
    background-position: center center;
    transition: transform .2s ease-in-out;
}

.side-menu008 .item-1:hover .sub-icon:before,
.side-menu008 .item-1.active .sub-icon:before {
    transition: transform .2s ease-in-out;
    transform: rotate(45deg);

}


.side-menu008 .item-1.active .sub-icon.collapse:before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    transition: transform .2s ease-in-out;
}

.side-menu008 .item-1 .sub-icon.collapsed:before {
    content: '';
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    transform: rotate(0deg);
}

.side-menu008 .item-1+.dropdown {
    margin-top: 16px;
    margin-bottom: 20px;
    margin-left: 16px;
    border-top: 0;
    border-radius: 2px;
}

.side-menu008 .item-2:first-child a {
    padding-top: 20px;
}

.side-menu008 .item-2:hover a {
    font-weight: bold;
}

.side-menu008 .dropdown .item-2:nth-last-of-type(1) {
    border-bottom: solid 1px rgba(0, 0, 0, 0);
}

.side-menu008 .item-2 a {
    display: block;

    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-left: 1.2rem;
}


.side-menu008 .item-2:hover a,
.side-menu008 .item-2.active a {
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    margin: 6px 0;
    padding: 12px 15px;

    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    border-left-width: 3px;
    border-left-style: solid;

    position: relative;
}