@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.btn_wsp {
  cursor: pointer;
  height: 62px;
  width: auto;
  padding: 10px 10px 10px 10px;
  position: fixed !important;
  color: #fff;
  bottom: 20px;
  right: 20px;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  align-items: center;
  z-index: 999999999 !important;
  background-color: #00e785;
  box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  animation: pulse 2.5s ease infinite;
}
