

.container-menu {
	width: 100%;
	background: #30304D;
	height: 50px;
	display: flex;
	justify-content: center;

}

.menu-dropdownmenu ul {
	list-style: none;
	width: 100%;
	height: auto;
}

.menu-dropdownmenu ul, .menu-dropdownmenu li {
	margin: 0;
	padding: 0;
}

.menu-dropdownmenu li {
	float: left;
	position: relative;
	width: auto;
	height: auto;

}

.menu-dropdownmenu li a:hover {
	background: #eee;
	color: black;

}

.menu-dropdownmenu a {
	font-family: 'Open Sans', Arial, sans-serif;
	background: #30304D;
	color: #FFFFFF;
	display: block;
	font-size: 12px;
	font-weight: bold;
	padding: 15px 25px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-ms-transition: all .25s ease;
	-o-transition: all .25s ease;
	transition: all .25s ease;
	height: 50px;
}

.menu_bar {
	display:none;
}

header {
	font-family: 'Open Sans', Arial, sans-serif;
	
}

header nav {
	background:#30304D;
	
	width: 100%;
	text-align: center;
}

header nav ul {
	list-style:none;
}

header nav ul li {
	display:inline-block;
	/*La razon por la que no usamos floar en vez de inline-block es
	porque no vamos a poder usar overflows en el header nav ul*/
	position: relative;
}

header nav ul li:hover .children {
	display: block;
}

/*Submenu*/
header nav ul li .children {
	background:#30304D;
	position: absolute;
	display: none;
	width: 150%;
	z-index: 1000;
}

header nav ul li .children li {
	display: block;
	overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,.5);
	/*Usamos overflow hidden porque aqui si vamos a necesitar usar float*/
}

header nav ul li .children li a {
	display: block;
	font-family: 'Open Sans', Arial, sans-serif;
}

header nav ul .children li a span {
	float: right;
	position: relative;
	top:3px;
	margin-right: 0px;
	margin-left:10px;
}

header nav ul li a {
	font-family: 'Open Sans', Arial, sans-serif;
	color:#fff;
	text-decoration: none;
	display: inline-block;
	padding:20px;
}

header nav ul li a:hover {
	color:black;
	
}

nav>ul{
	margin: 0px;
}




header nav ul li:hover {
	background:#eee;
	color: black;
}

header nav ul li span {
	margin-right:10px;
}

header nav ul li .caret {
	position: relative;
	top: 3px;
	margin-left: 10px;
	margin-right: 0;
}


.menu-submenu a:hover{
	background-color: #68A4C4 !important;
	color: white !important;
}

.menu-submenu a{
	text-align: left;
}

.menu-submenu li{
	background-color:#30304D;
	width: 130%;
}
.menu-submenu ul{
	width: 130%;
}


nav i {	
	padding: 5px;
	margin-right: 5px;
}




.fixar {
    position:fixed;
    margin-top: 0px !important;
    z-index: 9999;
    top:0;
}


@media screen and (max-width:800px) {
	body {
		padding-top:65px;
	}
	.container-menu{
		width: 100%;
		background:#30304D;
		display: block;
		position: fixed;
		top:0;
		z-index: 999999999;
	}
	.menu_bar {
		width: 100%;
		background:#30304D;
		display: block;
		position: fixed;
		top:0;
	}

	.menu_bar .bt-menu {
		display: block;
		padding: 20px;
		color:#fff;
		overflow: hidden;
		font-size:25px;
		font-weight:bold;
		text-decoration: none;
	}

	.menu_bar span {
		float: right;
		font-size: 40px;
	}

	header nav {
		width: 80%;
		height: calc(100% - 0px);
		right:100%; 
		/*Con esto ocultamos el menu hacia la derecha, lo agregamos hasta el final*/
		margin-top: 62px;
		position:fixed;
		overflow:scroll;
		z-index: 1000;
	}

	header nav ul li {
		display: block;
		border-bottom:1px solid rgba(255,255,255,.5);
		width: 100% !important;
	}

	header nav ul li a {
		display: block;
		
	}

	header nav ul li a:hover {
		
		color: black;
	}

	header nav ul li:hover .children{
		display: none;
	}

	header nav ul li .children {
		width: 100%;
		position: relative;
		/*display: block;*/
	}

	header nav ul li .children li a{
		padding-left:20px;
	}

	header nav ul li .caret {
		float: right;
	}

	.menu-submenu li a {
		background-color: inherit;
	}

	.menu-submenu li{
		background-color: #68A4C4 !important

	}
	
	.menu-submenu li a:hover,.menu-submenu li:hover  {
		background-color:#eee !important;
		color: #30304D !important;

	}

	.menu-dropdownmenu a{
		text-align: left;
	}

	.children a{
		margin-left: 35px;
	}

	