.whatsapp-button {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 320px;
    height: 40px;

    background: #1BD741;
    border: none;
    border-radius: 3px;

    position: fixed;
    bottom: 10px;
    right: 10px;
}

.whatsapp-button .more-info {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin-left: 10px;
}

@media screen and (max-width: 1024px) {
    .whatsapp-button {
        bottom: 8px;
        right: 8px;
    }
}

@media screen and (max-width: 640px) {

    .whatsapp-button {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

}