/*----------------------------------------
// CSS 
// Toggle submenu in mobile
//--------------------------------------*/
ul.sub-menu{
display: none;
}
.subMenuIcon {
	font-size: 30px;
	color: #999;
	background: #ededed;
	position: absolute;
	top:0;
	right: 0px;
	height:55px;;
	width: 55px;
	line-height: 55px;
	text-align: center;
	z-index: 99999;
	display: flex;
	cursor: pointer;
	justify-content: center;
	align-items: center;
}
@media only screen and (min-width:480px){
.subMenuIcon { 
	display:none!important;
}}

