/* .float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 40px;
  background-color: #25d366;
  color: #fff ;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  right: 1.5rem;
 margin-bottom: 10rem;
}

.float:hover{
   background-color: #084892;
}

.my-float {
  margin-top: 16px;
}

 */


 .btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  z-index: 999;
  bottom: 140px;
  right: 2rem;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-fb-pulse {
  background: #1877f2;
  color: white;
  position: fixed;
  z-index: 999;
  bottom: 40px;
  right: 2rem;

  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulsefb;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@keyframes pulsefb {
  0% {
      box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.5);
  }

  80% {
      box-shadow: 0 0 0 14px rgba(24, 119, 242, 0);
  }
}

.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}

.btn-fb-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;

  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-fb-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #1877f2;

  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
      padding: 25px;
      opacity: 0.75;
  }

  75% {
      padding: 50px;
      opacity: 0;
  }

  100% {
      opacity: 0;
  }
}

   