/*Whatsapp*/

#whatsapp-boton {
    position: fixed;
    bottom: -6px;
    right: auto;
    z-index: 80;
    float: left;
    left: 8px;
    display: none;
}


.whatsapp-forma-boton {
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: auto;
    height: auto;
    margin-right: 20px;
    line-height: 20px;
    font-size: 15px;
    font-weight: 700;
    margin-left: 4px;
    padding: 7px 18px;
}

.whatsapp-notificacion {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: rgb(255, 0, 0);
    display: block;
    position: absolute;
    z-index: 1;
    right: 1px;
    top: 2px;
}

.whatsapp-icono {
    display: flex;
    margin-right: 7px;
    background-image: url('whatsapp.svg'); /* Asegúrate de tener la ruta correcta al archivo SVG */
    width: 20px; /* Ajusta según el tamaño que necesites */
    height: 20px; /* Ajusta según el tamaño que necesites */
    background-size: cover;
}

.whatsapp-texto {
    display: block;
    color: rgb(255, 255, 255);
}

.pulse-button {
    position: relative;
    border: none;
    box-shadow: 0 0 0 0 rgb(14 136 36 / 59%);
    background-color: #0E8824;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-animation: pulse 2.25s infinite cubic-bezier(0.16, 0, 0, 1);
    -moz-animation: pulse 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 3.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.pulse-button:hover {
    box-shadow: 0 0 0 0 rgb(203 73 13);
    background-color: #cb490d;
}
@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);
    }
}
@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);
    }
}
@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);
    }
}
@keyframes pulse {
    to {
        box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);
    }
}