/* Style the WhatsApp icon */


.buy-now {
  z-index: 9;
  right: 40px;
  width: 65px;
  height: 65px;
  bottom: 35px;
  position: fixed;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #49E670;
  box-shadow: #49E670 0 5px 15px;
  animation-name: tada;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite
}


.buy-now:before {
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  animation-delay: .2s;
  background-color: #49E670;
  animation: ripple 1.5s ease-out infinite
}

@keyframes tada {
  0% {
    transform: scale(1)
  }

  10%,
  20% {
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }

  to {
    transform: scale(1)
  }
}

@keyframes ripple {
  0% {
    opacity: 1;
    transform: scale(0)
  }

  to {
    opacity: 0;
    transform: scale(2)
  }
}



.envytheme-cursor {
  top: 0;
  left: 0;
  transition: none;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  z-index: 9999999999;
  Pointer-events: none;
  color: var(--primaryColor);
  background-color: transparent;
  font-size: 14px;
  font-weight: 600
}

.envytheme-cursor span {
  opacity: 0;
  visibility: hidden;
  padding: 8px 15px 5px;
  display: inline-block;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: #959da533 0 8px 24px
}

@media screen and (max-width: 520px) {
  .buy-now {
    z-index: 999;
    right: 21px;
    width: 65px;
    height: 65px;
    bottom: 20px;
    position: fixed;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    background-color: #49E670;
    box-shadow: #49E670 0 5px 15px;
    animation-name: tada;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    scale: 0.7;
  }
}