/*!
 * Social sticky bar
 * by Ikhsan A
 */


.icon-bar {
  z-index: 4;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 12px;
  transition: all 0.5s ease;
  color: white;
  font-size: 24px;
  border-radius: 50%;
}

.icon-bar a:hover {
  background-color: orange;
  padding: 16px;
  border-radius: 50%;
}

.tooltipp {
  position: relative;
  display: inline-block;
}

.tooltipp .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: rgba(255, 255, 255, 70%);
  color: black;
  font-size: 12px;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 140%;
}

.tooltipp:hover .tooltiptext {
  visibility: visible;
}

.email {
  background: red;
  color: white;
}

.phone {
  background: green;
  color: white;
}