:root {
    --navbar-background: rgba(30,31,33,1);
    --navbar-text-color: rgba(151, 151, 151, 1);
}

.sidebar-nav {
    background-color: var(--navbar-background);
    width: 275px;
    position: fixed;
    top: 0px;
    z-index: 90;
    left: -275px;
    transition: all 0.5s ease;
    max-height: 100vh;
    overflow: scroll;
    height: 100vh;
    font-weight: 500;
    font-style: italic;
    background-image: url(/img/navigation/nav-footer.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}

.activeSidebar {
    left: 0px;
    z-index: 9998;
}

.sidebar-nav_header {
    height: 60px;
    border: 1px solid var(--navbar-background);
    background-color: var(--navbar-background);
    position: relative;
}

.sidebar-nav_close {
    cursor: pointer;
    width: 15px;
    height: 15px;
    background: url(/img/header/close_icon_new.png) no-repeat center;
    background-size: contain;
}

.sidebar-nav_search {
    margin-right: 3px;
}

.sidebar-nav_search_input {
    border-radius: 10px;
    border: 3px solid white;
    background-color: #ffbe56;
}

/*.nav-search {*/
/*color: #fff;*/
/*width: 255px;*/
/*height: 40px;*/
/*box-sizing: border-box;*/
/*border: 1px solid #374b5f;*/
/*border-radius: 3px;*/
/*margin: 0 auto;*/
/*display: block;*/
/*background: url(/images/search-icon.png) no-repeat  10px #293847;*/
/*padding-left: 35px;*/
/*}*/
.sidebar-nav_search_input:focus {
    outline: none;
    color: #fff;
}

.sidebar-nav_search_input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: white
}

.sidebar-nav_search_input::-moz-placeholder { /* Firefox 19+ */
    color: white;
}

.sidebar-nav_search_input:-ms-input-placeholder { /* IE 10+ */
    color: white
}

.sidebar-nav_search_input:-moz-placeholder { /* Firefox 18- */
    color: white
}

.nav-item {
    border: 1px solid var(--navbar-background);
    background-color: var(--navbar-background);
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    min-height: 36px;
}

.nav-item_link {
    font-size: 20px;
    text-align: left;
    line-height: 100%;
    vertical-align: middle;
    color: rgba(151, 151, 151, 1);
    display: block;
    font-weight: 300;
    font-style: normal;
}

.nav-item_subitem {
    color: white;
    font-weight: normal;
    font-size: 14px;
    padding-left: 8px;
}

a.nav-item_subitem:hover{
    color: white;
}

.nav-item.pages-link {
    font-weight: normal;
}

.subnav-item .nav-item_link {
    padding-left: 25px;
}

.nav-item:hover {
    background-color: #222;
    border: 0px;
}

.nav-item:hover .nav-item_link {
    color: var(--navbar-text-color);
}

.nav-item .expand-button {
    margin-left: auto;
    color: white;
}

.nav-item .expand-button.active .open-icon {
    display: none;
}

.nav-item .expand-button:not(.active) .close-icon {
    display: none;
}

.x-expand-button {
    cursor: pointer;
}

.clickOff {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.navbar-list {
    padding-left: 0;
    margin-bottom: 0;
}

.nav-logo {
    width: 75%;
    background-size: contain;
    height: 35px;
}

.navbar-list .collapse-arrow {
    transform: rotate(270deg);
    width: 10px;
    margin-left: 15px;
}