/*--- contenedor botones ---*/
.laterals {
	position: fixed;
	right: 0;
	top: 45%;
	z-index: 200;
	font-size: 25px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	border: none;
}

/*--- texto de los botones ---*/
.laterals a p{
	font-size: 11px;
	margin-left: 20px;
	text-align: left;
	align-items: center;
	display:inline-flex;
    font-family: sans-serif "Arial";
    border: none;
}

/*--- boton ---*/
.icons{
	color: #fff;
	text-decoration: none;
	display: flex;
	transition: all .5s;
	background-color: #2071b2;
	width: 180px;
	border-radius: 2rem 0 0 2rem;
	align-items: center;
	padding: 15px 15px;
	height: 40px;
	margin: 10px;
	margin-right: -130px;
}

/*--- movimiento de boton ---*/
.icons:hover{
	margin-right: 0px;
}

/*--- color de botones ---*/
.color_icon_1{background-color:rgb(60, 179, 113)}
.color_icon_2{background-color:}

.color_icon_1:hover{background-color:}
.color_icon_2:hover{background-color:}

