
#wafoot {
    position: fixed;
    background-repeat: no-repeat;
    background-position: top left;
    line-height: 14px;
    text-transform: uppercase;
    bottom: 100px;
    right: 100px;
    transition: bottom 5s;
    margin-left: 7px;
    z-index: 9999;
    background-image: url(../img/whatsappicon.svg);
    width: 60px;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
    display: none;
    padding-top: 76px;
    color: #25d366;
    line-height: 19px;
    font-weight: normal;
    font-size: 15px;
    font-family: frauncesblack,serif;
}

#wafoot small {
    color: #000;
    line-height: 13px;
    display: inline-block;
    font-size: 13px;
    font-family: degularm,sans-serif;
 }
 #wafoot.a {
    animation-name: shake;
 }
 #wafoot.v {
    display: block;
 }
 @keyframes shake {
    10%, 90% {
       transform: translate3d(-1px, 0, 0);
    }
 
    20%, 80% {
       transform: translate3d(2px, 0, 0);
    }
 
    30%, 50%, 70% {
       transform: translate3d(-4px, 0, 0);
    }
 
    40%, 60% {
       transform: translate3d(4px, 0, 0);
    }
 }

#wafoot {
      margin: 0;
      left: auto!important;
      right: 12px;
   }
   #wafoot.v {
      bottom: -40px!important;
   }

 @media only screen and (min-width:320px) and (max-width:768px){
   .btn-wsp{
       width:63px;
       height:63px;
       line-height: 66px;
  }
}


/* ===== Tooltip "¡Estamos en línea!" al pasar el cursor ===== */
#wafoot .wa-hover {
    position: absolute;
    top: 14px;
    left: 70px;
    white-space: nowrap;
    font-family: Inter, sans-serif;
    background: rgba(51, 51, 51, 0.5);;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    line-height: normal;
    text-transform: none;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    pointer-events: none;
}

#wafoot .wa-hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 6px 6px 6px 0;
    border-color: transparent rgba(51, 51, 51, 0.5) transparent transparent;
}

#wafoot:hover .wa-hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 1000;
}

@media only screen and (max-width: 768px) {
   #footer #footer-container-main #wafoot.v {
      left:25px !important;
   }
}