Html {
	font-size: 16px;
}


.social-bar {
	position: fixed;
	right: 0;
	top: 35%;
	font-size: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: felx-end;
	z-index: 100;
}

.icon {
	color: white;
	text-decoration: none;
	padding: .7rem;
	display: flex;
	transition: all .5s;
}

.icon-whatsapp {
	background: #29a71a;
}	

.icon:first-child {
	border-radius: 1rem 0 0 0;
}

.icon:last-child {
	border-radius: 1rem 0 0 1rem;      /***el primer valor debe ser 0, pero como solo tenemos 1 botón, se coloca así para redondear el borde superior**/
}

.icon:hover {
	padding-right: 3rem;
	border-radius: 1rem 0 0 1rem;
	box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);
}