

/*offcanvas menu*/
.offcanvas-menu {
    position: relative;
    width: 100%;
    overflow: hidden
}
.offcanvas-menu ul {
    margin: 0;
    padding: 0;
    list-style: none
}
.offcanvas-menu ul.menu {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1)
}
.offcanvas-menu ul.menu.off-view {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}
.offcanvas-menu ul.menu.in-view {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}
.offcanvas-menu ul li {
    display: block;
}
.offcanvas-menu ul li.menu-item-has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offcanvas-menu ul li.menu-item-has-children > a {
    width: calc(100% - 60px);
}
.offcanvas-menu ul li a {
    display: block;
    padding: 11px 20px;
    transition: color .3s;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    height: auto;
}
.offcanvas-menu ul li a:hover {
    color: #fff;
}
.offcanvas-menu ul li.back-btn>a {
    background-color: #313b47;
    color: #fff
}
.offcanvas-menu ul li.back-btn>a::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 8px;
    border-top: .32em solid transparent;
    border-right: .37em solid;
    border-bottom: .32em solid transparent;
    content: '';
    opacity: .75
}
.offcanvas-menu ul li.active>a {
    color: #00015E
}
.offcanvas-menu ul li.menu-item-has-children>span {
    display: block;
    position: relative;
    width: 100%
}
.offcanvas-menu ul li.menu-item-has-children>span>a {
    padding-right: 65px;  
}
.offcanvas-menu ul li.menu-item-has-children.active>span>a {
    color: #00015E
}
.offcanvas-menu ul li.menu-item-has-children .sub-menu-toggle {
    width: 60px;
    height: 54px;
    transition: background-color .3s;
    border-left: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    z-index: 1;
}
.offcanvas-menu ul li.menu-item-has-children .sub-menu-toggle::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 0;
    height: 0;
    margin-top: -5px;
    border-top: .35em solid transparent;
    border-bottom: .35em solid transparent;
    border-left: .4em solid;
    content: ''
}
.offcanvas-menu ul li.menu-item-has-children .sub-menu-toggle:hover {
    background-color: rgba(255,255,255,0.1)
}
.offcanvas-menu ul li.menu-item-has-children>.sub-menu {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: auto;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.offcanvas-menu ul li.menu-item-has-children>.sub-menu.in-view {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}
.offcanvas-menu ul li.menu-item-has-children>.sub-menu.off-view {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}
@-webkit-keyframes submenu-show {
    from {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        opacity: 0
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}
@keyframes submenu-show {
    from {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        opacity: 0
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}
.offcanvas-wrapper {
    position: relative;
    min-height: 100vh;
    background-color: #fff;
    z-index: 10
}
.offcanvas-container {
    position: fixed;
    top: 0;
    left: -290px;
    width: 290px;
    height: 100%;
    background-color: #374250;
    box-shadow: inset -4px 0 17px 0 rgba(0,0,0,0.35);
    visibility: visible;
    z-index: 99999;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.offcanvas-container.active {
    left: 0;
}

/* Mobile Header */
.mobile-header-area {
    display: none;
    padding: 5px 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #efefef;
}
.mobile-header-row {
    display: flex;
    align-items: center;
}
.mobile-header-ham {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mobile-header-logo {
    width: calc(100% - 50px);
    padding-right: 10px;
    display: flex;
}
.mobile-header-logo img {
	max-height: 55px;
}
@media only screen and (max-width: 1050px) {
    .header-area, .header-top-area {
        display: none;
    }  
    .mobile-header-area {
        display: block;
    }
}


/* Header */
.header-top-area {
	padding: 10px 0;
	text-align: center;
	background-color: #F6F6F6;
}
.header-area {
	width: 100%;
}
.header-row-left {
	display: flex;
	align-items: center;
	width: calc(100% - 200px);
}
.header-logo {
	display: flex;
	align-items: center;
	width: 160px;
	flex-shrink: 0;
}
.header-menu {
	width: calc(100% - 160px);
	padding-left: 40px;
}
.header-menu ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.header-menu ul li a {
	font-size: 16px;
	line-height: 1;
	padding: 10px 15px;
	color: #3E454D;
	position: relative;
	display: block;
}
.header-menu ul li.current_page_item a {
	color: #FF6137;
}
.header-menu ul li a::after {
	content: '';
	width: 0;
	height: 1px;
	background-color: #001731;
	position: absolute;
	bottom: 6px;
	left: 13px;
	transition: .4s ease width;
}
.header-menu ul li a:hover::after {
	width: calc(100% - 26px);
}
.header-row {
	display: flex;
	align-items: center;
	padding: 15px 0;
	/* border-bottom: .1rem solid #D6DBE2; */
}
.header-btns {
	width: 200px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 20px;
}
.hb-item.cart-hb-item {
	position: relative;
}
.cart-hb-count {
	width: 24px;
	height: 24px;
	background-color: #222529;
	position: absolute;
	top: -11px;
	right: -11px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 12px;
}

.header-menu ul li.menu-item-has-children {
	position: relative;
}
.header-menu .sub-menu {
	position: absolute;
	background-color: #fff;
	width: 30rem;
	top: 3.5rem;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	left: -8rem;
	padding: 20px 15px;
	border-radius: .5rem;
	box-shadow: rgba(99, 99, 99, 0.2) 0px .2rem .8rem 0px;
	display: none;
	z-index: 999;
}
.header-menu .sub-menu li {
    margin: 0 !important;
}
.header-menu .sub-menu li a {
    color: #35373C;
    display: block;
    padding: .6rem 0;
}
.header-menu li.menu-item-has-children:hover > .sub-menu {
    display: flex;
}
.header-area .container2 {
    width: 177rem;
    max-width: 100%;
}
.header-menu li.menu-item-has-children:hover > .sub-menu {
	display: flex;
}
.header-menu > ul .menu-item-has-children > a::before {
	content: "";
	position: absolute;
	right: 5px;
	top: 50%;
	border-top: .4rem solid #000;
	border-left: .4rem solid transparent;
	border-right: .4rem solid transparent;
	transform: translate(0,-50%);
}
.header-menu ul.sub-menu li a::after {
    display: none;
}