.sidebar-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 65px;
    padding: 0 20px;
}

/* --- Sidebar Menu --- */
#sidebar-menu {
    position: fixed;
    height: 100%;
    width: 320px;
    top: 0;
    left: -320px;
    background: #000;
    transition: all 0.5s;
    z-index: 1001;
}
#sidebar-menu.active {
    left: 0;
	overflow: auto;
}
.sidebar-menu__header {
    justify-content: flex-end;
}
.sidebar-menu__header button.sidebar-menu__close {
    background-color: unset !important;
    padding: 5px !important;
    border-radius: 4px !important;
}
.sidebar-menu__container { 
    overflow: auto;
}
.sidebar-menu__itemList {
    padding: 0 20px;
    margin: 20px 0;
}
.sidebar-menu__itemList li a {
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
    color: #FFAB0B;
}
.sidebar-menu__itemList li.menu-item-has-children .sidebar-menu__subMenu a {
    color: #fff;
}
.sidebar-menu__itemList li.menu-item-has-children {
    position: relative;
}
.sidebar-menu__itemList li.menu-item-has-children > a:after {
    content: '';
    display: block;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="512" height="512" x="0" y="0" viewBox="0 0 240.811 240.811" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g><path d="m220.088 57.667-99.671 99.695-99.671-99.707a12.147 12.147 0 0 0-17.191 0c-4.74 4.752-4.74 12.451 0 17.203l108.261 108.297c4.74 4.752 12.439 4.752 17.179 0L237.256 74.859c4.74-4.752 4.74-12.463 0-17.215-4.728-4.729-12.428-4.729-17.168.023z" fill="%23fff" opacity="1" data-original="%23fff"/></g></svg>');
    position: absolute;    
    right: 6px;
    top: 6px;
    width: 15px;
    height: 15px;
    transition: 0.3s;
    background-position: center;
    background-size: contain;
}
.sidebar-menu__itemList li.menu-item-has-children.active > a:after {
    transform: rotate(180deg);
}
.sidebar-menu__itemList li.menu-item-has-children li.menu-item-has-children > a:after {
    top: 5px;
}
.sidebar-menu__item .sidebar-menu__subMenu {
    display: none;
    margin-bottom: 20px;
}
.sidebar-menu__item .sidebar-menu__dropdown {
    position: relative;
    padding-right: 30px;
}
.sidebar-menu__item .sidebar-menu__dropdown:after {
    content:"\f107";
    position: absolute;
    right: 8px;
    font-family: FontAwesome;
    font-weight: normal;
}
.sidebar-menu__item .sidebar-menu__dropdown.active:after {
    transform: rotate(180deg);
    transition: all 0.3s;
}
.sidebar-menu__item .sidebar-menu__dropdown.active ~ .sidebar-menu__subMenu {
    display: block;
}
.sidebar-menu__item .sidebar-menu__subMenu li a {
    display: block;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
}