@charset "utf-8";
.social-bar {
	
	position: fixed;
	right: 0;
	top: 35%;
	font-size: 2rem;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index: 100;
	
}

.icon {
	color:white;
	text-decoration: none;
	padding: .7rem;
	display: flex;
	transition: all .5s;
	
}

.icon-facebook {
	
	background: #2E406E;
	border-radius: 0 1rem 0 0;
	padding: 8px 8px;
	color: #fff;
	
	
}
#facebook hover{
	background: #000;
	padding: 10px  40px;
}
.icon-twitter {
	
	background: #339dc5;
	padding: 8px 8px;
	color: #fff;
	
}

.icon-youtube {
	
	background: #E83028;
	padding: 8px 8px;
	color: #fff;
}

.icon-instagram {
	
	background: #3F60A5;
	padding: 8px 8px;
	color: #fff;
	border-radius: 0 0 1rem 0;
}
.social-bar :hover {
	padding-right: 3rem;
	background:#FFFFFF;
	border-radius: 1rem 0 0 1rem;
	box-shadow: 0 0.5rem rgba(0, 0, 0, 0.42);
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;

