/**** Whatsapp Flotante *****/
.btn-wsp{
    position:fixed;
    width:60px;
    height:60px;
    line-height: 63px;
/*    bottom:25px;*/
    bottom:150px;
    right:25px;
/*    background:#25d366;*/
    color:#25d366;
    border-radius:50px;
    text-align:center;
    font-size:45px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
    animation: breathe 2s ease-in-out infinite;
}
.btn-wsp i {
    animation: beat 2s ease-in-out infinite;
}
.btn-wsp:hover{
/*    background: #20ba5a;*/
    background: #fff;
    color: #25d366;
}
@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
    }
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px 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);
  }
  100% {
    transform: scale(1);
  }
}
/***************/