@import url(https://fonts.googleapis.com/css?family=Roboto);

.round {
    border-radius: 50%;
}
.fbtn {
    transition: all 300ms ease-in-out;
    width: 56px;
    height: 56px;
    background-color: var(--primary-fab);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    user-select: none;
    cursor: pointer;
    color: white;
    font-size: 1.7rem;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, .16), 0px 3px 10px rgba(0, 0, 0, .16);
    z-index: 100;
}
.fbtn i {
    transition: all 300ms ease-in-out;
    will-change: transform;
}
.inner-fabs .fbtn {
    width: 40px;
    height: 40px;
    right: 2.5rem;
    bottom: 2.5rem;
    font-size: 1.3rem;
    will-change: bottom;
}
.inner-fabs.show .fbtn:nth-child(1) {
    bottom: 6rem;
}
.inner-fabs.show .fbtn:nth-child(2) {
    bottom: 9rem;
}
.inner-fabs.show + .fbtn i {
    transform: rotate(135deg);
}
.fbtn:before {
    content: attr(data-tooltip);
    transition: opacity 150ms cubic-bezier(0.4, 0, 1, 1);
    position: absolute;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    color: #ececec;
    right: 50px;
    top: 25%;
    background-color: rgba(70, 70, 70, .9);
    font-size: 0.5em;
    line-height: 1em;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    border-radius: 2px;
    padding: 6px 8px;
    max-width: 200px;
    font-weight: bold;
    text-overflow: ellipsis;
    vertical-align: middle;
}
.inner-fabs.show .fbtn:hover:before {
    content: attr(data-tooltip);
    visibility: visible;
    opacity: 1;
}

/* Botões Antigos de Chat/WhatsApp */
#fab-wpp {
    position: fixed;
    width: 56px;
    right: 24px;
    bottom: 100px;
    z-index: 9998;
}

#fab-wpp a {
    z-index: 99999;
}

#fab-wpp .fab-action {
    transition: all 225ms ease-in-out;
    position: absolute;
    cursor: pointer;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 56px;
    height: 56px;
    background-color: #34AF23;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

#fab-wpp .fab-action i {
    margin: 0 auto;
    color: #fff;
    font-size: 2rem;
}

#fab-wpp {
    width: 56px;
    height: 56px;
    transition: .3s;
}

#fab-wpp::after,
#fab-wpp::before {
    content: '';
    position: absolute;
    opacity: 0;
    border: 4px solid #34AF23;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    animation: WaveWhatsApp 1.5s ease infinite;
}

#fab-wpp::after {
    animation-delay: .5s;
}

#fab-wpp:hover::after {
    border: 4px solid #34AF23;
}

#fab-wpp:hover::before {
    border: 4px solid #34AF23;
}

@keyframes WaveWhatsApp {
    0% {
        transform: scale(0.5);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

#fab-chat {
    position: fixed;
    width: 56px;
    right: 2rem;
    bottom: 6.5rem;
    z-index: 9998;
}

#fab-chat .fab-chat-action {
    transition: all 225ms ease-in-out;
    position: absolute;
    cursor: pointer;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 56px;
    height: 56px;
    background-color: var(--dark);
    border-radius: 50%;
    text-align: center;
}

#fab-chat .fab-chat-action i {
    margin: 0 auto;
    color: #fff;
    font-size: 2rem;
    animation: WaveChatNew 1.5s ease infinite;
}

#fab-chat {
    width: 56px;
    height: 56px;
    transition: .3s;
}

#fab-chat::after,
#fab-chat::before {
    content: '';
    position: absolute;
    opacity: 0;
    border: 4px solid var(--dark);
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

#fab-chat::after {
    animation-delay: .5s;
}

#fab-chat:hover::after {
    border: 4px solid var(--dark);
}

#fab-chat:hover::before {
    border: 4px solid var(--dark);
}

@keyframes WaveChatNew {
    0% {
        color: #FFF;
    }
    100% {
        color: var(--primary);
    }
}
