/* LEFT SIDEBAR NAV MENU ---------------------------------------- */
.nav-menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    overflow-x: hidden;
    overflow-y: scroll;
    text-overflow: ellipsis;
    background-color: #504f5a;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    color: white;
    text-decoration: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-wrap: nowrap;
    white-space: normal;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    transition: .3s;
}

.nav-open {
    width: 300px;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu a {
    display: flex;
    word-break: break-all;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    overflow-wrap: break-word;
}

.oaw-sidebar-menu {
    width: 300px;
    padding: 0;
}

.oaw-sidebar-menu>li {
    padding: 0;
    border-bottom: solid #44444e 1px;
}

.oaw-sidebar-menu>li:hover,
.oaw-navlink-active {
    background-color: #44444e;
}

.nav-menu a:hover,
.nav-menu li:hover {
    cursor: pointer;
    color: #ddd;
}

.inner-sidebar {
    padding: 45px 0 40px;
}

.nav-menu ul {
    list-style: none;
    line-height: 2;
}

.nav-menu ul a {
    color: white;
    text-decoration: none;
}

.nav-menu ul.sub-menu {
    padding: 0;
    border: none;
}

.nav-menu ul.sub-menu a {
    padding-left: 40px;
}

.nav-menu .sub-menu,
.nav-menu .sub-menu a {
    font-size: 16px;
}

.oaw-nav-chevron {
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0;
}

.oaw-nav-chevron-open {
    transform: rotate(180deg);
}

/* Theme menu */

#theme-sublink::after {
    content: 'New';
}

.menu-item-change-theme {
    padding: 0 !important;
}

.menu-item-change-theme label {
    all: unset;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 40px;
}

.menu-item-change-theme input[type="radio"] {
    all: unset;
}

.menu-item-change-theme input[type="radio"]:checked:after {
    content: "\2714";
}

div.oaw-burgermenu-textwrap {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

span.oaw-burgermenu-new {
    border-radius: 10px;
    padding: 7px;
    background-color: #3254aa;
    color: white;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    font-family: futura-pt;
}


/* -------------------------------------------------- */

.nav-menu-widgets {
    width: 300px;
    box-sizing: border-box;
    border-top: solid gray 1px;
    overflow: hidden;
    padding: 20px 50px;
    margin-top: 20px;
}