@charset "utf-8";
/* CSS Document */

.whatsapp-button {
    position: fixed;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    box-shadow: 2px 2px 3px #999;
    transition: all 0.3s ease;
}

.whatsapp-button.bottom-right {
    bottom: 20px;
    right: 20px;
}

.whatsapp-button.bottom-left {
    bottom: 20px;
    left: 20px;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 70%;
    height: auto;
}
