/*estilos menu celulares*/
/*CEBECERA FIJA*/
.header {
	width: 100%;
	margin: auto;
	background: #fff;
	height: 35px;
	transition: all 0.4s;
}
.fixed {
  position: fixed;
	background: #D2D3D5;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 100%;
	z-index: 10000;
	margin: auto;
  top: 0;
  left: 0;
}

.nav-bar {
	position: relative;
	top: 5px;
	text-align: center;
	cursor: pointer;
	font-size: 1.5em;
	width: 100%;
}
.icon-menu {
	color: #4D5A62;
}
.menu, .submenu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.menu {
  position: absolute;
  z-index: 2000;
	width: 100%;
	margin-left: -100%;
	transition: all 0.4s;
}
.menu__item {
	background: #eee;
	border-bottom: 1px dashed #999;
}
.menu__item:last-child {
	border-bottom: none;
}
.menu__link {
  font-size: 0.9em;
	padding: 7px 30px;
	color: #333;
	transition: all 0.4s;
}
.menu .icon-angle-right {
	opacity: 0;
}
.menu__link:hover {
	transform: translateX(10px);
	color: #215395;
}
.menu__link:hover span {
	opacity: 1;
}
.submenu {
	height: 0;
	overflow: hidden;
	transition: all 0.4s;
}
.submenu .menu__item {
	background: rgba(0,0,0,0.1);
}
.submenu .menu__link {
	padding: 5px 60px;
}
.submenu .menu__link:hover {
	transform: translateX(10px);
	color: #0096D5;
}
.mostrar {
	margin-left: 0;
}
.select {
	color: #215395;
	font-weight: 700;
}

@media(min-width:1024px) {
.fixed {
  position: fixed;
	background: #215395;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 100%;
	z-index: 10000;
	margin: auto;
  top: 0;
  left: 0;
}
.main-nav {
	display: flex;
	justify-content: center;
}
	.nav-bar {
		display: none;
	}
	.menu__item {
		background: none;
		border-bottom: none;
	}
	.menu__link {
		padding: 7px 10px;
		color: #fff;
	}
.menu__link:hover {
	color: #fff;
}
	.menu {
		background: #215395;
		margin-left: 0;
		display: flex;
		justify-content: center;
	}
	.container-submenu {
		position: relative;
	}
	.submenu {
		position: absolute;
		width: 320px;
		overflow: visible;
		z-index: 1000;
		opacity: 0;
		visibility: hidden;
	}
	.submenu .menu__item {
		background: #215395;
		border-bottom: 1px dashed #999;
}
	.submenu .menu__item:last-child {
		border-bottom: none;
}
	.container-submenu:hover .submenu {
		opacity: 1;
		visibility: visible;
	}
	.submenu .menu__link {
		padding: 5px 20px;
	}
}
