.float-btn {
  position: fixed;
  bottom: 50px;
  right: 85px;
  background-color: #0cc71b;
  color: white;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  border: none;
  /*box-shadow: 0 2px 5px rgba(0,0,0,0.3);*/
  cursor: pointer;
  text-align: center;
  font-size: 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
  z-index:99999999;
}

.float-btn:hover {
  background-color: #06930d;
}

.float-menu {
  position: fixed;
  bottom: 135px;
  right: 25px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  display: none;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 12px;
  color: #515869;
  z-index:99999999;
}

.float-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 12px;
  color: #515869;
}

.float-menu li {
  border-bottom: 1px solid #f1f1f1;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 12px;
  color: #515869;
}

.float-menu li:last-child {
  border-bottom: none;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 12px;
  color: #515869;
}

.float-menu li a {
  display: block;
  padding: 10px 15px;
  /*color: #333;*/
  text-decoration: none;
  cursor: pointer;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 12px;
  color: #515869;
}

.float-menu li a:hover {
  background-color: #f1f1f1;
  border-radius: 10px;
}

/*Estilos solo al icono whatsapp*/
.float-btn i {
  color: #fff;
  font-size: 35px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  90% {
    transform: scale(1);
  }
}


@media only screen and (max-width: 790px) {

.float-btn {
  bottom: 75px;
  right: 85px;
}

.float-menu {
  position: fixed;
  bottom: 150px;
  right: 25px;
}

	
}