<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.whatsapp-btn {
    position: fixed;
    bottom: 7rem;
    right: 2rem;
    background-color: var(--green-wsp);
    padding: .8rem;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    cursor: pointer;
    transition: transform .1s ease-in;
    box-shadow: 0px 0px 10px var(--black);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}


.whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.whatsapp-btn svg {
    width: 2.5rem;
    fill: var(--white-bold)
}</pre></body></html>