*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

header{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	height: 50px;
	background: #333;
	padding-right: 20px;
}

header .barra1{
	position: static;
    width: auto;
    height: auto; 
    float: right;
}

header .barra1 ul{
	list-style: none;
}

header .barra1 ul li{
	display: inline-block;
	position: relative;
	height: 50px;
}

header .barra1 ul a{
	color:#fff;
	display:block;
	text-decoration: none;
	padding-left:20px;
	padding-top: 15px;
	padding-bottom: 5px;
	padding-right: 20px;
	height: 100%;
}

header .barra1 ul a:hover{
	background: rgba(255,255,255,0.3);
}

header .barra1 ul li a span{
	padding-right: 10px;
}

header #button-menu{
	font-size: 30px;
	width: 30px;
	color: #fff;
	cursor: pointer;
	display: none;
	z-index: 100;
	float: left;
	margin-left: 15px;
	margin-top: 10px;
}

header .navegacion{
	position: absolute;
	top: 100%;
	left: 0;
	width: 320px;
	height: 100vh;
	background: rgba(0,0,0,.0);
	display: none;
}

header .navegacion ul{
	width: 320px;
	height: 100%;
	background: #333;
	list-style: none;

	position: absolute;
	top: 0;
	left: -320px;

	transition: left .3s;
}

header .navegacion .menu li.title-menu{
	padding: 20px;
	background: #7A7A7A;
	color: #fff;
	text-align: center;
	font-size: 22px;
	user-select: none;
}

header .navegacion .menu a{
	display: block;
	padding: 20px;
	border-bottom: 1px solid #C6D0DA;

	font-size: 22px;
	font-weight: 200;
	text-decoration: none;
	color: #fff;
}

header .navegacion .menu a:hover{
	background: rgba(255,255,255,0.3);
}

header .navegacion .menu li span.icon-menu{
	margin-right: 12px;
}

header .navegacion .menu .item-submenu > a::after{
	font: normal normal normal 14px/1 FontAwesome;
  	font-size: inherit;
  	text-rendering: auto;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	content: '\f105';

	float: right;
	color: #C5C5C5;
}

@media screen and (max-width: 320px){
	header .navegacion ul{
		width: 100%;
	}
}

@media screen and (max-width: 1150px){
	header #button-menu{
		display:block;
	}
	header .barra1{
		display: none;
	}

	header .navegacion{
		display: block;
	}
}

@media screen and (max-height:  550px){
	header .navegacion .menu{
		overflow: scroll;
	}

	header .navegacion .menu .oculto{
		margin-bottom: 40px;
	}
}