

/* Wrapper */
.icon-button {
	background-color: yellow;
	border-radius: 0.6rem;
	cursor: pointer;
	display: inline-block;
	font-size: 0.0rem;
	height: 0.6rem;
	line-height: 0.6rem;
	margin: 0 5px;
	position: relative;
	text-align: center;
	-o-user-select: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	width: 0.6rem;
}

/* Circle */
.icon-button span {
	border-radius: 0;
	display: block;
	height: 0;
	left: -180%;
	margin: 0;
	position: relative;
	top: -180%;
	-o-transition: all 0.9s;
	-webkit-transition: all 0.9s;
	   -moz-transition: all 0.9s;
	     -ms-transition: all 0.9s;
	        transition: all 0.9s;
	width: 0;
}
.icon-button:hover span {
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 0.6rem;
	margin: -0.3rem;
}

/* Icons */
.icon-button i {
	background: none;
	color: yellow;
	height: 0.6rem;
	left: 0;
	line-height: 0.6rem;
	position: relative;
	top: 0;
	-ms-transition: all 0.9s;
	-webkit-transition: all 0.9s;
	   -moz-transition: all 0.9s;
	     -o-transition: all 0.9s;
	        transition: all 0.9s;
	width: 0.6rem;
	z-index: 10;
}
.twitter span {
	background-color: #4099ff;
}
.facebook span {
	background-color: #3B5998;
}
.google-plus span {
	background-color: #db5a3c;
}
.linkedin span {
	background-color: #0484FF;
}
.icon-button .icon-twitter {
	color: #4099ff;
}
.icon-button .icon-facebook {
	color: #3B5998;
}
.icon-button .icon-google-plus {
	color: #db5a3c;
}
.icon-button .icon-linkedin {
	color: #0484FF;
}
.icon-button:hover .icon-twitter,
.icon-button:hover .icon-facebook,
.icon-button:hover .icon-google-plus,
.icon-button:hover .icon-linkedin {
	color: yellow;
}