.whatsapp__wrapper {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #fff;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: 0 0 5px 1px rgba(204,204,204,.5);
  z-index: 9999;
  cursor: pointer;
  animation: 1s 1s both wobble-hor-bottom;
}

.haptik-icon-container,
.haptik-icon-container .haptik-icon-block svg {
  width: 50px;
  height: 50px;
}

@keyframes wobble-hor-bottom {
  0%,100% { transform: translateX(0); transform-origin: 50% 50%; }
  15% { transform: translateX(-12px) rotate(-6deg); }
  30% { transform: translateX(7.5px) rotate(6deg); }
  45% { transform: translateX(-12px) rotate(-3.6deg); }
  60% { transform: translateX(6px) rotate(2.4deg); }
  75% { transform: translateX(-4px) rotate(-1.2deg); }
}
