/*Buttton search*/

#btn-mas {
	display: none;
}
.share_container {
	position: fixed;
	bottom: 100px;
	right: 24px;
	z-index: 99;
}
.redes a,
.btn-mas label {
	display: block;
	text-decoration: none;
	background: #800101;
	color: #fff !important;
	width: 60px;
	height: 60px;
	line-height: 60px;
	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: #800101 !important;
	text-decoration: none !important;
}
.redes a {
	margin-bottom: -15px;
	opacity: 0;
	visibility: hidden;
	font-size: 2rem !important;
}
#btn-mas:checked ~ .redes a {
	margin-bottom: 10px;
	opacity: 1;
	visibility: visible;
}
.btn-mas label {
	cursor: pointer;
	background: #800101;
	font-size: 30px;
}
#btn-mas:checked ~ .btn-mas label {
	transform: rotate(135deg);
	font-size: 25px;
}
