/* Wrapper */
.icon-button {
  background-color: #44597b;
  border-radius: 3rem;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 3rem;
  margin: 0 10px;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Circle */
.icon-button span {
  border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 0;
}
.icon-button:hover span {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  margin: -1.5rem;
}
.twitter span {
  background-color: #4099ff;
}
.facebook span {
  background-color: #3b5998;
}
.instagram span {
  background-color: #bd467e;
}
.youtube span {
  background-color: #ce0f1b;
}

/* Icons */
.icon-button i {
  background: none;
  color: white;
  height: 3.6rem;
  left: 0;
  line-height: 2.5rem;
  position: absolute;
  top: 0;
  width: 2.5rem;
  z-index: 10;
}

.icon-button:hover .icon-twitter,
.icon-button:hover .icon-facebook,
.icon-button:hover .icon-google-plus {
  color: white;
}
