/** Botones redes juntos
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:100px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #FFF;
  background-color:#1ab152;
    
    animation: shake 1s;

 
  animation-iteration-count: infinite;
}

.my-float{
	margin-top:16px;
}
*/



/** Botones redes juntos*/
#btn-mas{
	display: none;
}

.container2{
	position: fixed;
	bottom: 100px;
	right: 40px;
	z-index:100;
}

.redes a, .icon-mas2{
	display: block;
	text-decoration: none;
	background: #428ea6;
	color: #FFF;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
	transition: all 500ms ease;
}
.redes a:hover{
	background: #fff;
	color: #428ea6;
}

.redes a{
	margin-bottom: -15px;
	opacity: 0;
	visibility: hidden;
}

#btn-mas:checked ~ .redes a{
	margin-bottom: 10px;
	opacity: 1;
	visibility: visible;
}

.icon-mas2{
	cursor: pointer;
	background: #428ea6;
	font-size: 23px;
}

#btn-mas:checked ~ .btn-mas .icon-mas2{
	transform: rotate(137deg);
	font-size: 25px;
	

}