/**
 * WhatsApp Button Styles
 * O Rei da Fossa Theme
 */

button.whatsapp {
    z-index: 100;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 5rem;
    height: 5rem;
    border: 0;
    background-color: #04ac24;
    border-radius: 50%;
    transition: 0.5s;
    animation: shadow-pulse 1.5s infinite;
}

button.whatsapp:hover {
    background-color: #218838;
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

h4.text {
    background-color: #04ac24;
    border-radius: 7px;
    padding: 15px;
    width: 200px;
}

button.text {
    position: fixed;
    bottom: 3rem;
    right: -50px;
    width: 380px;
    height: 50px;
    border: 0;
    background-color: transparent;
    color: #ffffff;
    transition: 0.5s;
    display: block;
    z-index: 100;
}

button.text:hover {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

i.icon {
    width: 25pt;
    height: 25pt;
    margin: 28%;
    font-size: 1.5rem;
    fill-rule: evenodd;
    clip-rule: evenodd;
    color: #ffffff;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(4, 172, 36, 0.5);
    }

    100% {
        box-shadow: 0 0 0 35px rgba(4, 172, 36, 0);
    }
}

@keyframes shadow-pulse-big {
    0% {
        box-shadow: 0 0 0 0px rgba(4, 172, 36, 0.1);
    }

    100% {
        box-shadow: 0 0 0 70px rgba(4, 172, 36, 0);
    }
}