
/* ==========================================
	Estilos para la barra de redes sociales
============================================*/

.red{
	position: fixed;
	top: 200px;
	z-index: 100;
	left: 0;
}
.red .item{
	padding: 5px 30px;
	padding-left: 12px;
	margin-left: 12px;
	margin-bottom: 3px;
	width: 40px;
	-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	border-radius: 25px;
}
.red .item:hover{
	padding: 5px 30px;
	background: #bb92cd;
}
.red .red-facebook{
	background: #3b5998;
}
.red .red-twitter{
	background: #55acee;
}
.red .red-instagram{
	background: #f66c2d;
}
.red .red-youtube{
	background: #ff0000;
}
.red .red-pinterest{
	background: #cb2027;
}
.red .red-email{
	background: #733f89;
}
.red .red-wix{
	background: #ae7dc4;
}


/* ==========================================
	Estilos responsive para la barra de redes sociales
============================================*/


  @media screen and (max-width: 995px) {
	  
	  .red .item{
	   opacity: 0.6;
	      -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
	  .red{
		  opacity: 0.6;
		     -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;

}
 .red:hover{
		  opacity: 1;
		    -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
    background-color:transparent;

}
.red .item:hover{
	 
	opacity: 1;
	   -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
 } 
  .red .red-facebook:hover{
	background: #3b5998;
}
 
.red .red-instagram:hover{
	background: #f66c2d;
}
 
 
.red .red-email:hover{
	background: #733f89;
}
.red .red-wix:hover{
	background: #ae7dc4;
}


	  
	  
  }