#nav-menu ul > li {
    border-bottom: 1px solid rgba(30, 38, 38, 0.70);
}

#nav-menu ul > li:last-child {
    border-bottom: none;
}

.cw-menu-header-icons {
    display: flex;
    gap: 10px;
}

.cw-menu-header-icon {
    display: block;
    color: transparent;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: center center;
}

.more-arrow {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.1s ease-out;
    position: relative;
    top: -3px;
}

.more-arrow.active {
    transform: rotate(-135deg);
    position: relative;
    top: 1px;
}

.right-arrow {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    transition: transform 0.1s ease-out;
    position: relative;
    top: -1px;
}