.tooltip {
  color: #222;
  border-radius: 100%;
  display: inline-block;
  text-decoration: none;
  position: relative;
  width:250px;
  height: 28px;
  margin: 0 2px;
  padding-top: 12px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  text-align: center;
}

.tooltip.icon:before {
  color: #222;
  font-size: 20px;
}

.tooltip.facebook:before {
  content: '';
}



.tooltip span {
  background: #fff;
  color: #d79a2a;
  font-size: 14px;
  font-weight: bold;
  position:  absolute;
  bottom: 0;
  left: -25px;
  right: -25px;
  padding: 5px 7px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;  
}

.tooltip span:before {
  content: '';
/*   width: 0;
  height: 0; */
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  bottom: -10px;
  left: 115px;
}

.tooltip:hover span {
  bottom: 50px;
  visibility: visible;
  opacity: 1;
}


/* Hover through the icons */
.tooltip.facebook:hover {
  color: #222;
}

.tooltip.facebook span {
  color: #d79a2a;
  -webkit-box-shadow: -3px 3px 20px 0px rgba(0,0,0,0.34);
  -moz-box-shadow: -3px 3px 20px 0px rgba(0,0,0,0.34);
  box-shadow: -3px 3px 20px 0px rgba(0,0,0,0.34); 
}
