
.processandoMensagem {
    margin-top: 10px;
    text-align: center;
    line-height: 100%;
    height: 100%;
    width: auto;
    position: fixed;
    top: 200px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    font-size: xx-large;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.loader {
    display: inline-block;
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #de7006; /* Blue */
    border-radius: 60%;
    width: 80px;
    height: 80px;
    animation: spin 1s infinite alternate;
    margin-right: 15px;
    color: white;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Piscar botão de whatsapp*/
@keyframes piscar {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.botao-piscando {
    animation: piscar 1s infinite;
}