html { min-height: 100%; }

.btn-menu-mobile {
    float: left;
    margin-top: 4px;
    background: #ff0000;
    border-radius: 5px;
    padding: 2px 10px;
    color: #fff;
    opacity: 0.8;
    cursor: pointer;
}
.btn-menu-mobile i {
    font-size: 18px;
    position: relative;
    top: 4px;
    margin-left: 3px;
}
.mobile-menu-content {
	position:relative;
	z-index:100;
}
.menu-content {
	position: fixed;
	padding: 20px 10px;
	background: rgba(0,0,0,0.9);
	height: 100%;
	z-index: 90;
	width: 280px;
	color: #bbb;
	top: 0;
	right: -290px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 1;
	-webkit-box-shadow: -3px 5px 10px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: -3px 5px 10px rgba(0, 0, 0, 0.1);
	box-shadow: -3px 5px 10px rgba(0, 0, 0, 0.1);
}
.mobile-menu-content.show .menu-content { right: 0; }
/* overlay  */
.overlay-menu {
	position: fixed;
	background:rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 30;
	display:none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.overlay-menu.show {
	display:block;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
/* =========== */
.menu-content {
	padding:20px 10px;
}
.menu-content .close-btn{
	font-size: 18px;
    position: absolute;
    left: 0px;
    top: 0px;
    color: #666;
    cursor: pointer;
}
.menu-content a.logo-mobile {
	display: block;
	overflow: hidden;
	text-align: center;
}
.menu-content a.logo-mobile img {
	width: 80%;
	height: auto;
}
/* style for Dropdown Menu */
.menu-content .mobile-menu {
	margin-top:20px;
}
.menu-content .mobile-menu  ul  {
	padding: 0;
	text-align: right;

}
.menu-content .mobile-menu  ul li {
	display: block;
	position: relative;
}
.menu-content .mobile-menu ul li a {
    padding: 5px 10px;
    color:#eed998;
    display: block;
    position: relative;
    border-bottom: 1px dotted #444;
    line-height: 25px;
    font-weight: normal;
    font-size: 14px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.menu-content .mobile-menu ul.flex-column > li:last-child a {
	border-bottom: none;
}
.menu-content .mobile-menu  ul li a:hover {
	color: #deb674;
}
/*.hamburger-content .mobile-menu ul li.menu-item-has-children > a:after , */
.dropdown_cart:after {
	content: '\f067';
	display: inline-block;
	font-family: 'fontAwesome';
	font-size: 12px;
	cursor: pointer;
	float: left;
	line-height: 35px;
	position: absolute;
	top: 5px;
	left: 10px;
}
.menu-content .mobile-menu ul li.menu-item-has-children > a.active {
	color: #FFF;
}
/*.hamburger-content .mobile-menu ul li.menu-item-has-children > a.active:after ,*/
.dropdown_cart.active:after  {
	content: '\f068';
}
.menu-content .mobile-menu  ul ul {
	display: none;
	background: #222;
	border-right: 2px solid #1780c4;
}
.menu-content .mobile-menu  ul ul.show {
	display: block;
}
.menu-content .mobile-menu ul ul li a {
    font-size: 13px;
    font-weight: normal;
    padding-right: 20px;
}

@media (max-width: 768px) {
	.hamburger-btn {
		display: block;
	}

}