
/*BOTON WHATAPPS*/
 .btn-whatsapp-pulse {
        background: #25d366;
        color: white;
        position: fixed;
        bottom: 20px;
        left: 50px;
        font-size: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 0;
        height: 0;
        padding: 35px;
        text-decoration: none;
        border-radius: 50%;
        animation-name: pulse;
        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);
        }
    }
    .btn-whatsapp-pulse-border {
        bottom: 120px;
        left: 50px;
        animation-play-state: paused;
    }
    .btn-whatsapp-pulse-border::before {
        content: "";
        position: absolute;
        border-radius: 50%;
        padding: 25px;
        border: 5px solid #25d366;
        opacity: 0.75;
        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;}}
/*BOTON WHATAPPS*/
.btn_banner {
 text-align: center;
  background: #3498db;
  background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  background-image: -o-linear-gradient(top, #3498db, #2980b9);
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  -webkit-border-radius: 24;
  -moz-border-radius: 24;
  border-radius: 24px;
  font-family: Arial;
  color: #ffffff;
  font-size: 32px;
  background: #a8c331;
  padding: 10px 20px 10px 20px;
  text-decoration: none;}
.btn_banner:hover {
  background: #7834d1;
  text-decoration: none;}
