.end-menu{
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	left: -400px;
	top: 0px;
	width: 100%;
	max-width: 300px;
	height: 100vh;
	background-color: var(--azul);
	z-index: 5;
	transition: all .4s ease-in-out;
	padding: 20px 20px;
	opacity: 0.90;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
	overflow: hidden;
}

.end-menu > a{
	display: flex;
}

.end-menu > a img{
	padding-bottom: 10px;
	max-height: 50px;
}

.end-menu > a span{
	display: none;
}

.end-menu ul{
	list-style-type: none;
}

.end-menu  ul li a{
	/*background-color: rgba(255, 255, 255, 0.3);*/
	display: block;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	padding: 5px 5px;
	transition: all .2s ease-in-out;f.end-menu ul li a
	color: #FFF;

}

.end-menu  ul li a.marcado{
	background-color: var(--main-gorlan-color);
}

.end-menu > ul:last-of-type{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	flex-grow: 2;
	padding-bottom: 50px;
	padding-bottom: 10px;
	margin-top: 10px;
}

.end-menu > ul:last-child li:first-child{
	border-top: 1px solid var(--white-color);
	padding-top: 5px;
}

.end-menu.activo{
	left: 0px;
}

.end-menu ul{
	margin: 0px;
	padding: 0px;
}

.end-menu > ul > li{
	padding: 0px 0px 5px;
	padding: 0px;
}

.end-menu .menu-item-has-children{
  position: relative;
}

.fas.fa-chevron-right{
	position: absolute;
	top: 0px;
	right: 0px;
	height: 30px;
	width: 30px;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	color: rgba(255,255,255,1);
	background-image: url("../img/chevron_right.svg");
	background-size: 100%;
	transition: all .2s ease-in-out;
	cursor: pointer;
}

.fas.fa-chevron-right.activo{
	transform: rotate(90deg);
}

.end-menu > ul > li ul{
	padding-left: 10px;
	padding-top: 0px;
	display: none;
}

.end-menu > ul > li ul.activo{
	display: block;
}

.end-menu > ul > li > ul > li{
	padding: 0px 0px 5px;
	padding: 0px;
}


.end-menu > ul > li.current-menu-ancestor > a {
	border-left:  1px solid var(--naranja);
}

.end-menu ul li a{
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
}

.end-menu ul li ul li.current-menu-item a{
	background-color: var(--naranja);
}


.end-menu ul li a:hover{
	/*color: rgba(51,51,51,1);*/
	/*color: var(--white-color);*/
	/*text-shadow: 1px 1px 4px var(--white-color);*/
}

.end-menu ul li.current_page_item a{
	border-left:  2px solid #FfF;
}



.close-end-menu{
	position: fixed;
	top: 0px;
	left: 0%;
	width: 0%;
	height: 100vh;
	z-index: 4;
	background-color: rgba(0,0,0,0.75);
	transition: all .4s ease-in-out;
	cursor: pointer;
}

.close-end-menu.activo{
	width: 100%;
}