.whatsapp-message {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0bd561;
    box-shadow: 0px 3px 10px rgba(0,0,0,.25);
}

.whatsapp-image {
    width: 50px;
    height: 50px;
}

.integration {
    box-shadow: 0 3px 12px rgba(0,0,0,.15);
    border-radius: 50%;
    margin-bottom: 10px;
    width: 50px;
	z-index: 1;
    height: 50px;
    float: right;
    bottom: 45px;
    right: 20px;
    transition: box-shadow .15s linear;
    background-color: #fff;
    position: fixed;
}

/* Tooltip */
.integration .whatsapp-tooltip {
    position: fixed;
    right: 85px;
    bottom: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.integration:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.tooltip-text {
    background-color: #25D366;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

.tooltip-text strong {
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 768px) {
    .whatsapp-tooltip {
        display: none !important;
    }
}