.whatsapp-container {
  position: fixed;
  display: flex;
  right: 20px;
  bottom: 10px;
  align-items: center;
  z-index: 1000;
}

.whatsapp-container:active {
  filter: brightness(70%);
  transform: scale(0.95);
}

.whatsapp-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #25D366;
  background-color: #fff;
  padding: 5px;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-logo {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.whatsapp-text {
  font-size: 14px;
  padding-right: 12px;
}

/*shake vertical*/
.shake-whatsup:hover {
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

/* Responsive styling */
@media (max-width: 768px) {
  .whatsapp-container {
    right: 10px;
    bottom: 5px;
  }

  .whatsapp-logo {
    width: 64px;
    height: 64px;
    margin-right: 8px;
  }

  .whatsapp-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .whatsapp-container {
    right: 1rem;
    bottom: 1rem;
    flex-direction: column;
  }

  .whatsapp-logo {
    width: 48px;
    height: 48px;
    margin-right: 0;
    /* margin-bottom: 5px; */
  }

  .whatsapp-text {
    font-size: 10px;
    text-align: center;
  }

  .whatsapp-link{
    padding: 0px;
  }
}