

body .telegram {
  position: fixed;
  border: 2px;
  background: rgb(39, 146, 218);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 36px;
  bottom: 170px;
  z-index: 9999;
  right: 30px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .telegram::before {
  position: absolute;
  content: '';
  width: 90%;
  height: 90%;
  border: 2px solid rgb(39, 146, 218);
  border-radius: 50%;

}

body .telegram::after {
  position: absolute;
  content: '';
  width: 90%;
  height: 90%;
  border: 2px solid rgb(39, 146, 218);
  border-radius: 50%;

}

body .telegram .fa-paper-plane {
  position: absolute;
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes animate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}