/* INICIO BARRA NAVEGACION */

.barraNavegacion {
	background:rgba(255,255,255,.8);
	backdrop-filter: blur(1.5px);
	z-index:1000;

	padding-left:var(--margenLateral);
	padding-right:var(--margenLateral);
}

.contenedorLinks {
	display:flex;
	flex-direction:row;
	align-items:center;
}

.linksNavBar,
.dropdown-item {
	text-transform:uppercase;
	text-decoration:none;
	font-weight:700;
	font-size:.9em;
}

.contenedorLinks .soloLink, .contenedorLinks .dropdown {
	margin:auto 20px;
}

.accesoCuenta {
	position:absolute;
	right:80px;
	top:22px;
	transition:color ease-in-out .15s;
	text-decoration:none;
	font-weight:700;
	text-transform:uppercase;
	font-size:.65em;
}

.accesoCuenta img {
	display:none;
}

.navbar-brand {
	transform: scale(0.8);
}

@media screen and (min-width:992px) {
	.barraNavegacion {
		min-height:var(--alturaBarraNavegacion);
	}
	.accesoCuenta {
		position:absolute;
		right:5px;
		top:5px;
		transition:filter ease-in-out .15s;
	}
	.accesoCuenta:hover {
		filter:brightness(1.1);
	}
	.accesoCuenta img {
		display:block;
		height: 65px;
	}
	.accesoCuenta span {
		display:none;
	}
	.navbar-brand {
		transform:none;
	}
	.nav-item {
		margin-left:2em;
	}
}

@media screen and (min-width:1680px) {
	.nav-item {
		margin-left:3em;
	}
}

.dropdown.account{
    position: absolute;
    right: 0;
    margin: 0;
    margin-top: -17px;
}
.dropdown-menu{
    text-align: left !important;
}
/* FINAL BARRA NAVEGACION */

/* .truncate {
	max-width: 170px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis !important;
  } */
