
.wa-button{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 50vh;
    right: 0;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 5px;
    text-decoration: none;
    z-index: 999;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    height: 40px;
    width: 40px;
    min-width: fit-content;
    transition: width 0.3s ease, background 0.3s ease;
}

.wa-button img{
    width: 30px;
    height: 30px;
}

.wa-button:focus,
.wa-button:active {
    outline: none;
}

.wa-button:hover {
    background: #128C7E;
    justify-content: flex-start;
    transition: width 0.3s ease, background 0.3s ease;

}

.wa-button:hover::after {
    background: #128C7E;
    white-space: nowrap;
    width: calc-size(auto, 150px);
    justify-content: flex-start;
    transition: width 0.3s ease, background 0.3s ease;
    opacity: 1;
    visibility: visible;
    /* transition: width 0.3s ease, background 0.3s ease, transform 0.3s ease; */
    
}

.wa-button::after {
    color: white;
    content: "discuter sur whatsapp";
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transform-origin: scaleX(0);
    margin-left: 10px;
    font-size: 14px;   
    opacity: 0; 
    visibility: hidden;
    transition: all 0.3s ease;

}






