/* responsive nav for small devices */
.mobile_logo {
    padding: 12px 24px;
}
.mobile_logo img {
    max-width: 166px;
}
.mbnav{
    height: 100%;
}
.hamburger {
	display: flex;
	height: 100%;
	width: 60px;
	padding: 0;
	margin: 0;
	font-size: 25px;
	background-color: transparent;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: all 0.3s ease 0s;
	position: relative;
	z-index: 999;
}
.hamburger:hover, .hamburger:focus {
	outline: none;
	cursor: pointer;
}



.hamburger__line {
	position: absolute;
	left: 0px;
	display: block;
	width: 30px;
	height: 2px;
	background-color: var(--white);
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.mbnav.is-open .hamburger__line {
	background-color: var(--white);
	width: 24px;
}
.hamburger__line:nth-child(1){
	top: 20%;
}
.hamburger__line:nth-child(2){
	top: 47%;
}
.hamburger__line:nth-child(3){
	top: 74%;
}
.mbnav.is-open .hamburger__line:nth-child(1){
    top: 10px;
	transform: rotate(45deg);
}
.mbnav.is-open .hamburger__line:nth-child(2){
    left: 18px;
	width: 0;
}
.mbnav.is-open .hamburger__line:nth-child(3){
    top: 10px;
	transform: rotate(-45deg);
}
.hamburger__wrap {
	display: block;
	width: 30px;
	height: 30px;
	position: relative;
}

.mbnav.is-open .hamburger {
    right: 10px;
}
/*body.mobile-menu-open .mbnav:before {*/
/*    content: "";*/
/*    position: fixed;*/
/*    left: 0;*/
/*    background: #002a51;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: 111;*/
/*}*/

.mbnav__state {
    position: fixed;
	top: 0;
	left: 100%;
	z-index: 998;
	width: 100%;
	height: 100%;
	padding-top: 0;
    background-color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}
.mbnav.is-open .mbnav__state {
    left: 0;
    background: #003b71;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0);
}
.mbnav__inner {
    max-height: 100vh;
	overflow-y: auto;
    height: 100%;    
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
	position: relative;
}

.mbnav .mbnav__inner ul {
	margin: 0;
	list-style: none;
}
.mbnav .mbnav__inner ul li {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 16px;
}

.mbnav .mbnav__inner ul li.separator{
	height: 52px;
	position: relative;
}
.mbnav .mbnav__inner ul li.separator::after{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
	background-color: var(--charcoal_5);
}
.mbnav .mbnav__inner ul li.separator > a {
	display: none !important;
}

.mbnav .mbnav__inner ul li.strong-text > a{
	font-weight: var(--fontweightBold);
	font-size: 16px;
	letter-spacing: unset;
}

.mbnav .mbnav__inner ul li a {
	display: flex;
	padding: 12px 1em 12px 0;
	cursor: pointer;
	line-height: 1.3;
	text-decoration: none;
	font-weight: var(--fontweightNormal);
	font-size: 13px;
	color: #fff;
}
.mbnav__caret:after, .mbnav__caret:before{
    position: absolute;
	content: '';
	top: calc(50% - 3px);
	left: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(40deg);
	display: block;
	margin: auto;
	width: 10px;
	height: 2px;
	background: var(--brand-color);
	transition: all 0.2s ease;
}
.mbnav__caret:after{
	top: calc(50% + 3px);
	transform: translateX(-50%) translateY(-50%) rotate(-40deg);
}
.mbnav .mbnav__inner > ul {
	padding: 44px 20px 0 32px;
}
.mbnav .mbnav__inner > ul > li.open-sub-right{
	position: unset;
	display: flex;
}
.mbnav .mbnav__inner > ul > li.open-sub-right > a{
	width: calc(100% - 46px);
	letter-spacing: 1.5px;
}
.mbnav .mbnav__inner ul > li.open-sub-right .mbnav__caret {
	display: block;
	width: 46px;
	height: 38px;
	cursor: pointer;
	position: relative;
	right: -4px;
}
.mbnav .mbnav__inner > ul > li.open-sub-right ul > li > a{
    display: block;
    width: 100%;
    position: relative;
}
.mbnav .mbnav__inner > ul > li.current-menu-item > a,
.mbnav .mbnav__inner > ul > li.open-sub-right ul > li.current-menu-item > a{
    color: #FFDA31;
}

.mbnav .mbnav__inner > ul > li > a:before,
.mbnav .mbnav__inner > ul > li.open-sub-right ul > li > a:before{
    background: #FFDA31;
    width: 2px;
    height: 100%;
    content: "";
    position: absolute;
    left: -32px;
    top: 0;
    opacity: 0;
}
.mbnav .mbnav__inner > ul > li.open-sub-right .is-open ul > li > a:before {
    background: #003B71;
    left: -30px;
    width: 3px;
}

.mbnav .mbnav__inner > ul > li > a {
    position: relative;
}

.mbnav .mbnav__inner > ul > li.current-menu-item > a:before,
.mbnav .mbnav__inner > ul > li.open-sub-right ul > li.current-menu-item > a:before{
    opacity: 1;
}

.mbnav ul li.open-sub-right ul{
	position: absolute;
	left: 100%;
	top: 0;
	width: 0%;
	height: 100%;
	padding: 0;
	background-color: var(--primary-color);
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease 0s;
	overflow-x: hidden;
	z-index: 1;
	opacity: 0;
}
.mbnav ul li.open-sub-right.is-open > ul,
.mbnav ul li.open-sub-right .is-open > ul{
	left: 0%;
	width: 100%;
	padding: 0 22px 0 32px;
	opacity: 1;

	height: 100vh;
}

.mbnav .mbnav__inner > ul > li.open-sub-right ul > li {
	position: unset;
	display: flex;
	width: 100%;
}
.mbnav .mbnav__inner > ul > li.open-sub-right ul li.menu-goback{
	font-size: 14px;
	letter-spacing: 1.5px;
	cursor: pointer;
	position: relative;
	padding-left: 35px;
	margin: 24px 0 30px 0;
}
.mbnav .mbnav__inner > ul > li.open-sub-right > ul ul li.menu-goback{
	font-weight: var(--fontweightBold);
	letter-spacing: unset;
	font-size: 16px;
}
.mbnav .mbnav__inner > ul > li.open-sub-right ul li.menu-goback::after {
	font-family: "himmel" !important;
	font-style: normal !important;
	font-weight: normal !important;
	font-variant: normal !important;
	text-transform: none !important;
	speak: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\67";
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	font-size: 16px;
	z-index: 0;
	transition: all 0.3s ease 0s;
	font-weight: unset;
}
.mbnav .mbnav__inner > ul > li.open-sub-right ul > li > a{
	/* width: calc(100% - 46px); */
	font-weight: 400;
	font-size: 13px;
	padding: 12px 1em 12px 0;
}
.mbnav .mbnav__inner > ul > li.open-sub-right ul > li.mfeatured-projects > a {
    font-weight: 700;
}

.mbnav .mbnav__inner > ul > li.open-sub-right ul > li.has-sub > a{
	width: calc(100% - 46px);
	text-transform: uppercase;
}
.mbnav .mbnav__inner > ul > li.open-sub-right ul ul li > a{
	font-size: 16px;
	padding: 0.5em 1em 0.5em 0;
	font-weight: var(--fontweightNormal);
}

.mbnav-footer-box{
	display: none;
}
.mbnav .mbnav__inner ul li.menu-footer{
	display: flex;
	padding-top: 32px;
	padding-bottom: 32px;
}
.mbnav .mbnav__inner > ul > li > a {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mbnav .menu-footer .mbnav-footer{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-top: 1px solid var(--charcoal_5);
	padding-top: 32px;
	width: 100%;
}
.mbnav .menu-footer .mbnav-footer span{
	font-size: 14px;
	padding-bottom: 24px;
	max-width: 255px;
}
.mbnav .menu-footer .mbnav-footer .button{
	font-size: 13px;
	padding: 14px 70px 14px 32px;
	color: var(--white);
	border: 1px solid;;
}
.mbnav .menu-footer .mbnav-footer .button:focus,
.mbnav .menu-footer .mbnav-footer .button:hover{
	color: var(--copper);
}


.mbnav ul li.open-sub-right .is-open > ul {
    background: #D1D3D4;
    width: 94%;
    left: 6%;
    z-index: 2;
    color: #5B595B;
}

.mbnav ul li.open-sub-right .is-open > ul:after {
    content: "";
    position: fixed;
    left: 6%;
    background: #003b71;
    width: 6%;
    height: 100%;
    z-index: -1;
}

.mbnav ul li.open-sub-right .is-open > ul > li a {
    color: #5B595B !important;
}

.mbnav ul li.open-sub-right.is-open > ul.sub-menu {
    left: 6%;
    width: 94%;
}

.mbnav ul li.open-sub-right.is-open > ul.sub-menu li.menu-footer+.menu-footer {
    display: none;
}

.mbnav ul li.open-sub-right.is-open > ul.sub-menu:after {
    content: "";
    position: fixed;
    left: 0;
    background: #002a51;
    top: 0;
    width: 6%;
    height: 100%;
    z-index: 111;
}


.mobile-menu .sub-menu .sub-menu .menu-footer {
    display: none;
}

@media (max-width:1100px){
    .sub-menu .products_wrapper {
        margin: 0;
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }
    
    .sub-menu  .products_wrapper .application_wrap {
        width: 100% !important;
        padding: 8px 0 !important;
    }
    
    .mbnav ul li.open-sub-right .products_wrapper .application_wrap > ul {
        position: static;
        width: 100%;
        opacity: 1;
        background: transparent;
    }
    
    .mbnav ul li.open-sub-right .products_wrapper .application_wrap > ul li a ,
    .mbnav ul li.open-sub-right .brand-categories-wrapper  > ul.brand-categories li a {
        color: #5B595B;
    }
    
    .sub-menu .brand-categories-wrapper {
        margin: 0;
        display: flex;
        flex-direction: column;
        padding-top: 0;
        overflow: visible;
        width: 100% !important;
        padding: 8px 0 !important;
    }

    .sub-menu .brand-categories-wrapper h2{
        display:none;
    }
    
    .mbnav ul li.open-sub-right .brand-categories-wrapper > ul.brand-categories {
        position: static;
        width: 100%;
        opacity: 1;
        background: transparent;
        overflow: visible;
    }
    
    .sub-menu .products_wrapper .application_wrap h6 {
        text-transform: uppercase;
        color: #003B71;
        letter-spacing: 0.5px;
    }
    
}

@media (max-width:991px){
	.product-list.product-list-passive .product-list-left .panel-btn.sticky {
	    top: 50%;
	    bottom: unset;
	    display: block;
	    left: 0;
	    position: fixed;
	}
}

@media (max-width:767px){
    .hamburger__wrap{
        width:30px;
        height:30px;
    }
    .mbnav.is-open .hamburger {
        right: 0 !important;
        top: 10px;
        left:auto;
    }
    .mbnav .mbnav__inner ul > li.open-sub-right .mbnav__caret{
        right: -8px
    }
}