﻿.whatsapp {
    z-index: 999;
    position: fixed;
    bottom: 85px;
    left: 30px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: pulsing 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: all 300ms ease-in-out;
}

    .whatsapp > a {
        color: #fff !important;
        font-size: 2rem;
    }

.svg-inline--fa {
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}

.fa-whatsapp {
    color: #fff;
    background: linear-gradient(#25d366,#25d366) 14% 84%/16% 16% no-repeat, radial-gradient(#25d366 60%,transparent 0);
}

.mobile-fixed-button {
    display: none;
    position: fixed;
    right: 212px;
    bottom: 31px;
    background-color: mediumblue;
    color: white;
    padding: 6px 13px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Media Query: Only apply these styles when the screen width is 768px or less */
@media only screen and (max-width: 768px) {
    .mobile-fixed-button {
        display: block; /* Show the button on mobile devices */
    }


    .mobile-fixed-buttonH {
        display: none;
        position: fixed;
        right: 125px;
        bottom: 31px;
        background-color: mediumblue;
        color: white;
        padding: 6px 13px;
        border-radius: 5px;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    /* Media Query: Only apply these styles when the screen width is 768px or less */
    @media only screen and (max-width: 768px) {
        .mobile-fixed-buttonH {
            display: block; /* Show the button on mobile devices */
        }
    }
