/* ----------------- INICIO NAV DE AREAS ----------------- */
.nav-areas{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#nav-nuevo-area{
  width: 450px;
  border-radius: 20px;
  position: fixed;
	bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
	background: #858688;
	border-radius: 30px;
	z-index: 2;
}

#nav-nuevo-area .background-link-areas li{
	list-style: none;
	color: var(--white-color);
	border-bottom: 1px solid var(--white-color);
	width: 80%;
	margin: auto;
	padding: 15px 0;
}

#nav-nuevo-area .background-link-areas li:hover{
	background: var(--white-color);
	color: #EE5A29;
	font-weight: bolder;
	width: 100%;
	margin: 0;
}

#nav-hamburguer-areas{
	outline: none !important;
  border: none;
  background: #FFA500;
  border-radius: 40px;
  width: 40px;
  height: 40px;
}

#accesos-clientes{
	background: #EE5A29;
	border-radius: 20px;
	padding: 5px 20px;
	margin-left: 30px;
	text-align: center;
  transition: .4s ease;
}

#accesos-clientes a{
	text-decoration: none;
  color: #fff;
}

#accesos-clientes.active{
  display: none;
}
#accesos-clientes.activeAcceso{
	transform: translate(-40%, 0%);
}
#contenedor-nav-areas{
	transition: .8s ease;
}

#contenedor-nav-areas.active{
	transform: translateX(-165px);
}
#logo-fabrimetal-bottom-areas{
	transition: .1s ease;
}
#logo-fabrimetal-bottom-areas.hide-show{
	opacity: 0;
}



/* Icon 1 */
.animated-icon2 {
	/* width: 30px; */
	width: 26px;
	height: 20px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	left: -6px;
	bottom: 1px;
	/* left: -4px; */
	/* left: -6px; */
	}
	
	.animated-icon2 span{
	display: block;
	position: absolute;
	height: 1.5px;
	width: 95%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	/* left: 2px; */
	}
	
	.animated-icon2 span {
	background: #e3f2fd;
	}
	
	.animated-icon2 span:nth-child(1) {
	top: 0px;
	width: 40%;
	}
	
	.animated-icon2 span:nth-child(2),
	.animated-icon2 span:nth-child(3) {
	top: 8px;
	width: 60%;
	left: 1px;
	height: 1.5px;
	/* left: 2px; */
	}
	
	.animated-icon2 span:nth-child(4) {
	top: 16px;
	/* width: 30%; */
	}
	
	.animated-icon2.open span:nth-child(1) {
	top: 11px;
	width: 0%;
	left: 50%;
	}
	
	.animated-icon2.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 80%;
	}
	
	.animated-icon2.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 80%;
	}
	
	.animated-icon2.open span:nth-child(4) {
	top: 11px;
	width: 0%;
	left: 50%;
	}

	.navbar-toggler:focus{
		box-shadow: none;
	}

/* ----------------- FINAL NAV DE AREAS ----------------- */

@media only screen and (max-width: 768px) {
	#nav-nuevo-area {
    /* width: 350px; */
		width: 300px;
		bottom: 10px;
	}	
	#accesos-clientes{
		display: none;
	}
	#accesos-clientes.mostrar{
		display: block;
	}
}