
.contenedor-menu
{
	position: fixed;
    width: 100%;
    height: 50px;
    top: 100px;
    background: #c5242c;/*215A9A;*/
    box-shadow: 2px 2px 5px #6c6d62;
    z-index: 3;
}

.contenedor-menu nav
{
	position: relative;
	width: 90%;
	height: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.menu
{
	list-style: none;
	width: 100%;
	margin: 0px;
	padding: 0;	
}

.menu > li
{
	position: relative;
	display: inline-block;
	height: 100%;
	cursor: pointer;
	vertical-align: middle;
}

.menu > li > a
{
	position: absolute;
	width: max-content;
    height: fit-content;
    top: 0;
    bottom: 0;
    margin: auto;
	display: block;
	padding: 0 15px;
	color: #fff;
	text-decoration: none;
	font-family: 'dotum';
	font-size: 15px;
}

.menu-texto-oculto
{
	opacity: 0;
    padding: 0 15px;
    font-size: 15px;
	font-family: 'dotum';
	font-weight: bolder;
}

.texto-menu-span
{
	position: absolute;
    width: fit-content;
    height: fit-content;
    top: 0;
    bottom: 0;
    font-size: 25px;
}

.menu > li:hover
{
	background: #ffffff8c;
}

.dropdown-menu > li > a
{
	padding: 3px 15px;
}

.boton-menu
{
	display: none;
}

.boton-menu span
{
	color: #fff;
	font-size: 25px;
	cursor: pointer;
	display: block;
	margin: auto;
}

.menu-nombre
{
	float: right;
}

@media screen and (max-width: 1100px)
{
	.contenedor-menu nav
	{
		position: absolute;
		width: 60%;
		min-width: 300px;
		height: 60vh;
		left: -100%;
		margin: 0;
		background: #454645;
		overflow-y: auto;
	}

	.menu > li
	{
		display: block;
		border-bottom: 1px solid rgba(255,255,255,0.3);
		height: 40px;
	}

	.boton-menu
	{
		width: 94%;
	    height: 100%;
	    margin: auto;
	    display: block;
	}

	.boton-menu .texto-menu
	{
		display: block;
		color: #fff;
		text-decoration: none;
		font-weight: bold;
		font-family: 'calibri';
		font-size: 25px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.menu-nombre
	{
		float: none;
	}
}