.spinner-wrap {
  position: fixed; /* Make the spinner fixed relative to the viewport */
  left: 0; /* Align it to the left side */
  bottom: 0; /* Align it to the bottom side */
  margin-left: 20px; /* Optional: Add some spacing from the left */
  margin-bottom: 20px; /* Optional: Add some spacing from the bottom */
z-index:999;
}

.spinner-item {
  border: 1px solid #25D366;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: zoom 2s linear 0.75s infinite;
}

.spinner-item-2 {
  animation-delay: 1.25s;
}

.spinner-item-3 {
  animation-delay: 1.75s;
}

.spinner-wrap img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 50px; /* Adjust the size of the image if needed */
  width: 50px;
  z-index: 1; /* Ensure the image stays on top of the spinner */
}

@keyframes zoom {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}


.whatsapp-icon{
    color: #25D366;
    font-size: 2.6em;
    cursor: pointer;
    background-color: #ededed;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}