/*LOGO SUPERIOR*/
#logo-superior {
	position: relative;
	z-index: 1000;
	
  max-width: 100%;
  margin: auto;
	background: #eeebd9;
	padding: 10px;
}
.logosuperior {
	width: 200px;
	margin: 0;
}
.grupo-logosuperior {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.columna-logosuperior {
/*	width: 50%;*/
}
.btnsup {
	display: none;
}
.botonwasap-logosuperior {

}
.columna-logosuperior .botonwasap-logosuperior {
	margin-left: auto;
}
.contenedor-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
#btn-menu {
  display: none;
}
.contenedor-menu label {
  font-size: 28px;
  color: #124E7C;
  cursor: pointer;
  display: none;
}
.menu ul {
  display: flex;
  list-style: none;
}
.menu ul ul {
  display: none;
}
.menu li {
/*	border-right: 1px dashed #999;*/
}
.menu li:last-child {
	border-right: none;
}
.menu a {
	font-size: 0.85em;
  padding: 7px 20px;
  margin: 0px 2px;
  color: #124E7C;
  font-weight: 600;
  transition: all 0.6s;
}
.menu a:hover {
  background: #124E7C;
	color: #fff;
  border-radius: 5px;
}
.menu a span {
  margin-left: 10px; /*para separar un poco el icono del texto*/
	color: #999;
}
/*estilos del submenu1*/
.submenu1:hover ul {
  display: block;
  position: absolute;
	background: #eee;
}
.submenu1 ul a {
  padding: 10px 50px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.submenu1 ul a span {
  position: absolute;
  left: 10px;
  display: none;
}
.submenu1 ul a:hover span {
  display: inline-block;
}

.menu a.select {
  color: #fff;
  background: #124E7C;
  border-radius: 5px;
}

/*    ocultar submenu, el cual tiene el evento "click" en submenu.js y que origina conficto en pantallas grandes */
.submenu {
  display: none;
}


/*ESTILOS RESPONSIVE WEB DESIGN*/

@media (max-width: 768px) {

/*    ocultar submenu1   */
.submenu1 {
  display: none;
}
.contenedor-menu label {
  display: block;
	margin-left: auto;
	position: relative;
	top: 3px;
}

/*activar submenu*/
.submenu {
  display: block;
}
.menu {
  position: absolute;
  top: 100px;
  left: 0;
  width: 90%;
  transform: translateX(-100%);
  transition: all 0.4s;
}
#btn-menu:checked ~ .menu {
  transform: translateX(0%);
}
.menu a {
  color: #fff;
	text-align: left;
	padding: 10px 0;
	padding-left: 30px;
}
.menu ul {
  display: block;
  background: #333;
}
.menu ul li {
  border-bottom: 1px dashed rgba(255,255,255,.3);
}
.menu ul li:last-child {
  border-bottom: none;
}
.menu ul li:hover ul {
  display: none;
  position: static;
}
.menu li {
	border-right: none;
}
/*estilos submenu*/
.submenu a span {
  position: absolute;
  right: 10px;
	color: #fff
}
.submenu ul a span {
  display: none;
  left: 10px;
}
.submenu ul {
  background: rgba(0,0,0,.8);
}
.submenu ul a {
  padding: 10px 50px;
}
.submenu ul a:hover span {
  display: inline-block;
}
}

/*LAPTOPS*/
@media (min-width: 1024px) {

	.btnsup {
		display: block;
	}
}