@media (max-width: 991px) {
	.nav-menu{
		display: none;
	}

	.drawer-bg{
		position: fixed;
		width: 100%;
	    height: 100%;
	    z-index: 999;
	    top: 0;
	    right: 0;
	    background: rgba(0,0,0,0.5);
	}

	.mobile-drawer{
	    position: fixed;
	    height: 100%;
	    /*background: linear-gradient(to right, #102226 0%, #078F86 50%, #102226 100%);*/
	    background: white;
	    top: 0;
	    z-index: 1000;
	    width: 280px;
	    left: -100%;
	    transition: all 0.2s ease-in-out;
	    overflow: auto;
	}

	.mobile-right-drawer{
	    position: fixed;
	    height: 100%;
	    /*background: linear-gradient(to right, #102226 0%, #078F86 50%, #102226 100%);*/
	    background: #034a46;
	    top: 0;
	    z-index: 1000;
	    width: 300px;
	    right: -100%;
	    transition: all 0.2s ease-in-out;
	    overflow: auto;
	}

	.mobile-drawer.show{
	    transition: all 0.2s ease-in-out;
		left: 0px;
	}

	.mobile-right-drawer.show{
	    transition: all 0.2s ease-in-out;
		right: 0px;
	}

	.mobile-drawer .close-drawer {
	    color: #FFF;
	    position: absolute;
	    top: 10px;
	    right: 10px;
	}

	.mobile-right-drawer .close-drawer {
	    color: #FFF;
	    position: absolute;
	    top: 10px;
	    left: 10px;
	}

	.mobile-drawer-content{
	    position: fixed;
	    height: 100%;
	    top: 0;
	    background: white;
	    /*left: -100%;*/
	    z-index: 1095;
	    transition: all 0.2s ease-in-out;
	    width: 60%;
	    display: none;
	    overflow: auto;
	}

	.mobile-drawer-content.show{
	    left: 40%;
	    transition: all 0.2s ease-in-out;
	    display: block;
	}

	.mobile-drawer-content .category-menu{
		border-bottom: 1px solid #EEE;
		border-top: 1px solid #EEE;
		list-style: none;
	}

	.mobile-drawer-content .category-menu a{
		height: 44px;
		line-height: 44px;
		vertical-align: middle;
	}

	.mobile-drawer-content .category-menu a > p{
		line-height: normal;
		margin-top: 20px;
	}

	.mobile-drawer-content .category-menu .category-name{
		display: inline-block;
		width: 80%;
		border-right: 1px solid #EEE;
	}

	.mobile-drawer-content .category-menu .category-name:hover{
		color: #b8304d;
	}

	.mobile-drawer-content .category-menu  ul{
		display: none;
	}

	.mobile-drawer-content .category-menu > ul > li{
		list-style: none;
		/*border-bottom: 1px solid #EEE;*/
		/*padding-top: 20px;*/
	}
	.mobile-drawer-content .category-menu  ul  li  a{
		text-align: center;
	}

	.menu-togggle{
		text-align: center;
		display: inline-block;
		width: 15%;
	}

	.menu-togggle  span  i:hover{
		color: #b8304d;
	}

	.mobile-drawer .visitor,
	.mobile-right-drawer .contact{
	    padding: 20px;
	    text-align: center;
	}

	.mobile-drawer .visitor {
	    border-bottom: 1px solid rgba(255,255,255,0.3);
	}

	.mobile-drawer .visitor a{
	   	display: inline-block;
	}

	.mobile-drawer .navigation{
		padding: 0px;
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}

	.mobile-drawer .navigation > ul,
	.mobile-drawer .navigation > ul > li > ul,
	.mobile-drawer .navigation > ul > li > ul > li > ul{
		color: #FFF;
		margin-bottom: 0px;
		border-top: 1px solid rgba(255,255,255,0.3);
		padding-left: 0px;
	}

	.mobile-drawer .navigation > ul > li > ul > li > ul > li:last-child,
	.mobile-drawer .navigation > ul > li > ul > li:last-child,
	.mobile-drawer .navigation > ul > li:last-child{
		border-bottom: 1px solid #083A81;
	}

	.mobile-drawer .navigation > ul > li,
	.mobile-drawer .navigation > ul > li > ul > li{
		display: block;
	}

	.mobile-drawer .navigation > ul > li.submenu > ul,
	.mobile-drawer .navigation > ul > li.submenu > ul > li.submenu > ul{
		display: none;
	}

	.mobile-drawer .navigation > ul > li.submenu > a,
	.mobile-drawer .navigation > ul > li > ul > li.submenu > a{
		background-image: url("images/icons/submenu.png");
		background-position: right center;
		background-repeat: no-repeat;
	}

	.mobile-drawer .navigation > ul > li,
	.mobile-drawer .navigation > ul > li > ul > li,
	.mobile-drawer .navigation > ul > li > ul > li >ul > li{
		list-style: none;
		position: relative;
		line-height: 44px;
		color: #FFF;
		text-align: left;
		border-top: 1px solid #083A81;
	}

	.mobile-drawer .navigation > ul > li > a,
	.mobile-drawer .navigation > ul > li > ul > li > a,
	.mobile-drawer .navigation > ul > li > ul > li > ul > li > a{
		color: black;
		font-size: 15px;
		vertical-align: middle;
		display: block;
	}

	.mobile-drawer .currencySection{
		padding: 20px;
	}

	.mobile-drawer .currencySection ul{
		text-align: center;
		padding-left: 0px;
	}

	.mobile-drawer .currencySection ul > li{
		list-style: none;
	}
	.mobile-drawer .currencySection ul > li > a{
		padding: 10px;
		color: white;
	}
	.mobile-drawer .currencySection ul > li > ul{
		display: none;
	}
	.mobile-drawer .currencySection ul > li > ul  > li{
		width: 60px;
		margin:auto;
		padding: 5px 0;
	}
	.mobile-drawer .currencySection ul > li > ul > li > a{
		color: #b8304d;
	}

}