*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#button-menu{
	font-size: 34px;
    color: #60605e;
    cursor: pointer;
    float: right;
    margin-top: 8px;
}

.navegacion{
	position: absolute;
	top: 100%;
	right: 0;
	width: 0%;
	height: 100vh;
	background: rgba(0,0,0,.0);

}

.navegacion ul{
	width: 320px; 
	height: 100%;
	background: #fff;
	list-style: none;
	overflow:auto;
	position: absolute;
	top: 0;
	right: -428px;

	transition: right .3s;
}
@media (max-width: 768px) {
.navegacion ul{
/*width: 100vw;*/
width: 100%;
}
}

.navegacion .menu li.title-menu{
	padding: 7px 9px;
	background: #d1d1d1;
	color: #fff;
	text-align: left;
	font-size: 13px;
}

.navegacion .menu a{
	display: block;
	padding: 7px;
	border-bottom: 1px solid #C6D0DA;

	font-size: 13px;
	font-weight: 200;
	text-decoration: none;
	color: #19198b;
}

.navegacion .menu a:hover{
	background: #798DA3;
	color: #fff;
}

.navegacion .menu li span.icon-menu{
	margin-right: 12px;
}

.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;
}

/* Submenu ============*/

.navegacion .submenu li.title-menu{
	background: #fff;
	color: #575D69;
}

.navegacion .submenu li.go-back{
	padding: 10px 8px;
	background: #5F6F81;
	color: #fff;
	font-size: 13px;
	cursor: pointer;
}

.navegacion .submenu li.go-back::before{
	font: normal normal normal 14px/1 FontAwesome;
  	font-size: inherit;
  	text-rendering: auto;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	content: '\f0d9';
	margin-right: 10px;
}

@media screen and (max-width: 320px){
	.navegacion ul{
		width: 100%;
	}
}