@-webkit-keyframes border-animate {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
}
@keyframes border-animate {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
}
.wa-button {
  position: fixed;
  right: 120px;
  bottom: 26px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  z-index: 9999;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("/scripts/wa_button/wa.svg");
}
.wa-button:before,
.wa-button after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #00E676;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  -webkit-animation: border-animate 1.5s linear infinite;
          animation: border-animate 1.5s linear infinite;
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .wa-button {
    display: none;
  }
}

.telegram-button:after {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}