/* headermobile */
.header-mobile {
    padding: 15px 0px;
    top: 0px;
    width: 100%;
    background: #fff;
    position: fixed;
    z-index: 50;
}

.header-mobile .fa-bars {
	font-size: 24px;
	color: #000;
	margin-top: 5px;
}
.mobile-cart {
    position: relative;
    display: inline-block;
    border-radius: 23px;
    margin-top: -3px;
    background: #96bc54;
    padding: 5px;
    /* border-radius: 100px; */
    width: 45px;
    height: 45px;
}
.mobile-cart a{
    color: #000;
}

.mobile-cart .fa-shopping-cart {
    font-size: 25px;
    color: #ffffff;
    margin-right: 7px;
    margin-top: 4px;
}
.mobile-cart span {
    position: absolute;
    border-radius: 50%;
    background: #373737;
    color: #fff;
    width: 18px;
    height: 18px;
    right: -5px;
    top: -0px;
    font-size: 11px;
    line-height: 20px;
}

@media (max-width: 768px) {
    header {
		height: 0px;
		overflow: hidden;
    }
    
}

/*header-mobile-menu */
.header-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 110;
    width: 280px;
    padding-top: 50px;
    padding-bottom: 30px;
}

.header-mobile-menu .nav-title {
    height: 50px;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #efefef;
}
.header-mobile-menu .nav-title .fa-times {
    font-size: 20px;
    color: #305160;
    position: absolute;
    top: 0px;
    padding: 15px 15px;
    right: 0px;
    cursor: pointer;
}
.header-mobile-menu .nav-title .fa-angle-left {
    display: none;
    font-size: 24px;
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 12px 15px;
    cursor: pointer;
}
.header-mobile-menu .nav-title .title-name {
    margin: 5px 20px;
    font-size: 18px;
    color: #305160;
    overflow: hidden;
}
.main-nav {
    overflow-y: auto;
    max-height: 100%;
}
.main-nav a {
    display: block;
    padding: 8px 15px;
    font-size: 15px;
    color: #333;
}
.main-nav a:hover {
    background: #eeee;
    color: #000;
}
.main-nav .phoneh a:hover {
    background: none;
    color: inherit;
}
.main-nav a.has-childs {
    border-bottom: 1px solid #d9e1e4;
    color: #000000;
    /* text-transform: uppercase; */
    font-weight: bold;
} 
.main-nav a.has-childs .fa-angle-right {
    font-size: 20px;
    line-height: 18px;
} 
.main-nav a.has-childs:last-child {
    margin-bottom: 10px;
}
.main-nav .inner-childs {
    display: none;
    position: fixed;
    top: 50px;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    z-index: 120;
    overflow: auto; 
}
.main-nav .inner-childs a{
    position: relative;
    border-bottom: 1px solid #eee;
    color: #333;
}
.main-nav .inner-childs a span{
    position: absolute;
    right: 10px;
    top: 22px;
    color: #7c7c7c
}  
.custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 99;
    cursor: pointer;
    display: none;
}

/* scroll top */
#scroll-top {
    position: fixed;
    right: 15px;
    bottom: 110px;
    padding: 17px;
    line-height: 0;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 2px;
    z-index: 5;
    cursor: pointer;
    display: none;
}
#scroll-top .fa-arrow-up {
    font-size: 16px;
    color: #333;
}