.menu_toggler{
    width: 25px;
    height: 17px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.menu_toggler:after{
    content:'';
    display: block;
    position: absolute;
    left:0;
    right:0;
    top: calc(50% - 1px);
    border-top: 2px solid #fff;
}
.menu_close{
    display: block;
    cursor: pointer;
    z-index: 11111;
}

header.header .navbar {
    padding-top: 10px;
    padding-bottom: 30px;
    display: none;
    position: fixed;
    z-index: 111111;
    top: 0;
    left: 0;
    bottom: 0;
    background: #191716;
    height: 100vh;
    overflow: auto;
    width: calc(100% - 30px);
    max-width: 400px;
}
header.header ul.nav {
    list-style: none;
    width: 100%;
    padding: 0;
    margin-top: 0;
    overflow: auto;
    margin-bottom: 0;
    flex-direction: column;
}
.navbar li {
    position: relative;
    width: 100%;
    display: block;
}

.navbar li a:not([href]):not([tabindex]),
.navbar li a{
    color:#fff;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    width: 100%;
    position: relative;
    font-size: 16px;
    font-weight: 300;
}

.navbar li:hover>a,
.navbar li:hover>a:not([href]):not([tabindex]){
    color:#f28b00;
}

.navbar li.menu-item-has-children>a{
    position: relative;
    padding-right: 35px;
}
.has_children_link{
    width: 30px;
    height: 30px;
    display: flex;
    align-items:center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
    z-index: 111;
}

.has_children_link:after{
    content: '\f107';
    font-size: 16px;
}
.expanded>a .has_children_link:after{
    content: '\f106';
}

header.header ul.sub-menu{
    display: none;
    z-index: -1;
    list-style: none;
    padding: 0;
}
header.header .expanded>ul.sub-menu{
    display: block;
}
header.header ul.sub-menu li a {
    display: block;
    position: relative;
    font-size: 14px;
    padding: 10px 0 10px 34px;
}
.icon_wr{
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
    width: 24px;
    height: 24px;
}
.icon_wr + span{
    padding-left: 34px;
}

@media (min-width:783px){
    .admin-bar header.header .navbar{
        padding-top: 32px;
    }
}
@media (min-width:992px) {
    /*header & menu start*/
    .admin-bar header.header .navbar {
        top: unset;
    }

    header.header .navbar {
        padding-top: unset !important;
        position: relative;
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;
        background: transparent;
        height: auto;
        width: auto;
        max-width: unset;
        z-index: 1;
        padding-bottom: unset;
        overflow: unset;
    }

    header.header ul.nav {
        flex-direction: row;
        width: auto;
        height: auto;
        overflow: unset;
    }

    .navbar li {
        width: auto;
    }

    .navbar li a:not([href]):not([tabindex]),
    .navbar li a {
        padding: 15px 15px 15px 0;
        display: block;
        justify-content: unset;
        font-size: 20px;
        color: #000;
    }

    .has_children_link,
    .navbar li a:not([href]):not([tabindex]),
    .navbar li a,
    ul.sub-menu li a {
        font-size: 12px;
    }

    .navbar li:hover > a,
    .navbar li:hover > a:not([href]):not([tabindex]) {
        color: #ef3e36;
    }

    .has_children_link {
        width: 16px;
        height: 16px;
        margin-left: 0;
        right: 0;
    }

    .navbar ul.nav > li.menu-item-has-children:hover:after {
        content: "";
        z-index: 0;
        position: absolute;
        height: 50px;
        width: 850px;
        bottom: -50px;
        left: 0;
        display: block;
    }

    header.header ul.sub-menu {
        z-index: -1;
        width: 200px;
        margin: 0;
        padding: 0;
        opacity: 0;
        position: absolute;
        transition: all ease .3s;
        transform: translate(0, 0);
        height: 0;
        overflow: hidden;
        display: block;
        background: #fff;
    }

    header.header ul.sub-menu li a {
        display: block;
        width: auto;
        position: relative;
        margin: 0;
        padding: 10px 15px;
    }

    .navbar li.menu-item-has-children > a {
        padding-right: 20px;
    }

    .navbar li.menu-item-has-children:hover > .sub-menu {
        z-index: 10;
        opacity: 1;
        transform: translate(0, 20px);
        height: auto;
        overflow: visible;
    }

    /*2+ level menu*/
    .navbar .sub-menu .has_children_link:after {
        content: '\f105';
    }

    /*header & menu end*/
    /*products menu start*/
    .products_menu_wr .navbar li a,
    .products_menu_wr .navbar li a:not([href]):not([tabindex]) {
        color: #fff;
        font-size: 16px;
        padding: 0 30px;
    }
    .products_menu_wr .navbar li a:hover,
    .products_menu_wr .navbar li a:not([href]):not([tabindex]):hover {
        color: #000;
    }

    .products_menu_wr .navbar li:first-child a {
        padding: 0 30px 0 0;
    }

    .products_menu_wr .navbar>ul>li:nth-last-child(n + 2) > a:before {
        content: '';
        width: 1px;
        height: 12px;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        display: block;
        position: absolute;
        background-color: rgba(255, 255, 255, .8);
    }

    .products_menu_wr .has_children_link {
        right: 5px;
    }
    .products_menu_wr ul.sub-menu .has_children_link{
        display: none;
    }

    .products_menu_wr .navbar li.menu-item-has-children:hover > a > .has_children_link {
        content: '\f106';
    }
    /*
    .products_menu_wr ul.nav > li > ul.sub-menu {
        left: 0;
        top: 16px;
        opacity: 0;
        width: 1200px;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .products_menu_wr ul.nav > li.menu-item-has-children:hover > ul.sub-menu {
        display: flex;
        padding: 10px;
    }

    .products_menu_wr ul.nav ul.sub-menu.menu-depth-1 >li{
        width: 25%;
    }
    .products_menu_wr ul.sub-menu>li>ul.sub-menu {
        display: block;
        opacity: 1;
        width: 100%;
        height: auto;
        z-index: 1;
        position: relative;
        transform: translate(0, 20px);
    }
    .products_menu_wr ul.sub-menu>li>a:not([href]):not([tabindex]),
    .products_menu_wr ul.sub-menu>li>a{
        color: #000;
        padding: 0;
    }

    .products_menu_wr .navbar li .sub-menu a:hover{
        color: #f28b00;
    }

    .products_menu_wr ul.sub-menu>li>a:not([href]):not([tabindex]){
        cursor: auto;
    }
    .products_menu_wr ul.sub-menu>li>ul.sub-menu>li{
        margin-bottom: 10px;
    }
    .products_menu_wr ul.sub-menu>li>ul.sub-menu>li>a{
        padding: 0 0 0 37px;
        font-size: 14px;
    }
    */
}
@media(min-width: 1200px){
    .navbar li a:not([href]):not([tabindex]),
    .navbar li a{
        padding: 0 15px;
        font-size: 16px;
    }
    .navbar li:first-child a{
        padding: 0 15px 0 0;
    }
    .fef3e36.menu_offers a{
        color:#ef3e36;
    }
    .fef3e36.menu_offers:hover a{
        color:#000!important;
    }
}

/* menu end*/