.icon-bar {
  position: fixed;
  top: 35%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 10;
}

.icon-bar a {
  text-decoration: none;
  width: 210px;
  background: #3b5999;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px;
  font-size: 18px;
  transform: translateX(-170px);
  -webkit-transform: translateX(-170px);
  -ms-transform: translateX(-170px);
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
}

.icon-bar .facebook {
  background: #3b5998;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.icon-bar .twitter {
  background: #00aced;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.icon-bar .instagram {
  background: #e4405f;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.icon-bar .youtube {
  background: #cd201f;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.icon-bar .linkedin {
  background: #0077b5;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}


.icon-bar .whatsapp {
    background: #25D366;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
  }

.icon-bar a i {
  padding-left: 20px;
  font-size: 30px !important;
  animation: letszoom 3s linear alternate-reverse infinite;
}

@keyframes letszoom {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }
}

.icon-bar a:hover {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
}
