.menu-contenedor__logo {
	width: 200px;
	height: 80px;
	background-color: #FFFFFF;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu-contenedor__logo img {
	width: 150px;
	height: 45px;
}

.menu-contenedor__logo:hover {
	cursor: pointer;
}

.menu-contenedor__iconos {
	display: flex;
	gap: 5px;
	align-items: center;
}

.menu-enlace {
	color: #FFFFFF;
	font-size: 20px;
}

.menu-enlace__perfil {
	width: 160px;
	height: 20px;
	color: #FFFFFF !important;
    font-size: 16px;
	display: flex;
	align-items: center;
	white-space: nowrap;
	overflow: hidden;
}

.menu-enlace__perfil--nombre {
	margin: 0px 5px 0px 5px;
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.menu-enlace:hover, .menu-enlace__perfil:hover {
	color: #FFFFFF;
	text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.8);
}

.menu-enlace:focus, .menu-enlace:active, .menu-enlace:visited {
	color: #FFFFFF;
}

.menu-enlace__acceso {
	color: #000000;
	background-color: #FFFFFF;
    font-size: 13px;
    font-weight: bolder;
	text-align: center;
    border-radius: 15px;
}

.menu-enlace__acceso--icono {
	width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    font-size: 18px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-enlace__acceso:hover, .menu-enlace__acceso--icono:hover {
	color: #0066CC;
}

.menu-boton {
	background-color: #FFFFFF;
}

.menu-boton:focus {
	outline: none;
	box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.8);
}

.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
	font-size: 13px;
}

/*Responsive*/

@media (max-width: 1190px) {
	.menu-contenedor__logo img {
		width: 130px;
		height: 45px;
		border-top-left-radius: 20px;
		border-top-right-radius: 5px;
		border-bottom-left-radius: 20px;
		border-bottom-right-radius: 15px;
	}
}

@media (max-width: 990px) {
	.menu-contenedor__logo {
		margin: 0px auto;
	}
	
	.nav-item {
		text-align: justify;
	}
}