

/***************************nav_left*************************************/

.nav_left_wrp {
    position: fixed;
    top: 0;
    height: 100vh;
    background-color: white;
    box-sizing: content-box;
    width: 18%;
    left: -18%;
    transition:all 0.4s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}
.nav_left_wrp.active{
    position: fixed;
    top: 0;
    height: 100vh;
    background-color: white;
    box-sizing: content-box;
    width: 16%;
    left:0;
    transition:all 0.4s ease-in-out;
}
.nav_left_wrp  #top-menu {
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    width: unset;
}
.nav_left_wrp  #_desktop_top_menu {
    height: 100%;
    position: relative;
    min-width: 18%;
}

.category-tree {
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 0px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.category-tree a{
    font-size: 1.05rem;
    font-family: "Roboto";
    color: #575756 !important;
    font-weight: 500;
    text-transform: lowercase;
}
.category-tree .nav_title{
    display: none;
}
.category-tree .chevron {
    height: 100%;
    width: 50px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.category-tree .list .chevron svg{
    width: 30%;
    transform: rotate(-90deg);
    margin-top: 5px;
    transition: 0.2s ease-in-out;
}
.category-tree .list.active > strong > .chevron svg{
    transform: rotate(0deg);
}
.category-tree .list > strong{
    background-color: transparent !important;
}
.category-tree .list.active > strong{
    background-color: #F4F4F4 !important;
}
.category-tree .list:hover > strong{
    background-color: #F4F4F4 !important;
}
.category-tree .chevron svg path{
    fill: #B2B2B2;
}
.category-tree ul.menu {
    padding: 0;
    list-style: none;
    width: 100%;
    margin: 0;
    clear: both;
    display: table;
    border-top: 1px solid #C8CACC;
}
.category-tree ul.menu .list {
    font-size: 14px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    vertical-align: sub;
    clear: both;
}

.category-tree ul.menu li.list strong {
    text-decoration: none;
    padding-left: 25px;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    border-bottom: #dee0e2 solid 1px;
    border-top: #dee0e2 solid 1px;
    background-color: transparent;
    position: relative;
    text-transform: capitalize;
    transition: background-color 0.2s ease-in-out;
}

.category-tree ul.menu li.list strong:hover {
    background-color: #F4F4F4;
}
.category-tree ul.menu .list strong a{
    font-size: 1.05rem;
    font-family: "Roboto";
    color: #575756 !important;
    font-weight: 500;
    text-transform: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.category-tree ul.menu .list strong a::first-letter{
    text-transform: uppercase;
}
.category-tree ul.menu .list .items {
    height: 0px;
    overflow: hidden;
    padding: 0;
}

.category-tree ul.menu .active > .items {
    display: block;
    padding: 0;
    height: auto;
    color: #fff;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 200ms;
    clear: both;
    float: left;
    width: 100%;
    padding: 0;
}
.category-tree ul.menu .list.active > .items strong{
    margin-left: 30px;
    border-left: 1px solid var(--orange_alliantz);
}
.category-tree ul.menu .list.active > .items.level2 strong{
    margin-left: 60px;
    border-left: 1px solid var(--orange_alliantz);
}

@media(min-width:1080px) and (max-width:1159px) {

    .nav_left_wrp.active {
        width: 19%;
    }
    .category-tree ul.menu .list strong a {
        font-size: 0.8rem;
    }
    .category-tree ul.menu li.list strong {
        padding-left: 5px;
    }
}

@media(min-width:1160px) and (max-width:1239px) {
    .nav_left_wrp.active {
        width: 19%;
    }
    .category-tree ul.menu .list strong a {
        font-size: 0.8rem;
    }
    .category-tree ul.menu li.list strong {
        padding-left: 10px;
    }
}
@media(min-width:1240px) and (max-width:1359px) {
    .nav_left_wrp.active {
        width: 19%;
    }
    .category-tree ul.menu .list strong a {
        font-size: 0.85rem;
    }
}
@media(min-width:1360px) and (max-width:1459px) {
    .nav_left_wrp.active {
        width: 19%;
    }
    .category-tree ul.menu .list strong a {
        font-size: 0.9rem;
    }
}
@media(min-width:1460px) and (max-width:1899px) {
    .nav_left_wrp.active {
        width: 17%;
    }
    .category-tree ul.menu .list strong a {
        font-size: 0.95rem;
    }
}
@media(min-width:1900px){
    .nav_left_wrp.active {
        width: 17.8%;
    }
    .category-tree ul.menu .list strong a {
        font-size: 1rem;
    }
}
