body, button, input, textarea {
    font-family: 'Montserrat', sans-serif;
}

/* CSS Multiple Whatsapp Chat */
#whatsapp-chat {
    position: fixed;
    background: #fff;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32,33,36,.28);
    bottom: 90px;
    right: 30px;
    overflow: hidden;
    z-index: 99;
    animation: showchat 0.5s ease;
}

a.blantershow-chat {
    background: linear-gradient(to right top, #34af23, #61c153);
    color: #fff;
    position: fixed;
    z-index: 98;
    bottom: 35px;
    right: 15px;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32,33,36,.28);
    text-decoration: none;
    transition: transform .22s ease,
                opacity .22s ease,
                box-shadow .22s ease,
                color .22s ease,
                background-color .22s ease;
    animation: softPulse 2.4s ease-in-out infinite;
    will-change: transform, box-shadow;
}

a.blantershow-chat:hover,
a.blantershow-chat:focus {
    color: #00302c !important;
    animation-play-state: paused;
    transform: scale(1.05);
}

a.blantershow-chat i {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}

.header-chat {
    background: linear-gradient(to right top, #34af23, #61c153);
    color: #fff;
    padding: 20px;
}

.header-chat h3 {
    margin: 0 0 10px;
}

.header-chat p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.info-avatar {
    position: relative;
}

.info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
}

a.informasi {
    padding: 20px;
    display: block;
    overflow: hidden;
    animation: showhide 0.5s ease;
}

a.informasi:hover {
    background: #f1f1f1;
}

.info-chat span {
    display: block;
}

#get-label,
span.chat-label {
    font-size: 12px;
    color: #888;
}

#get-nama,
span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

#get-label,
#get-nama {
    color: #fff;
}

span.my-number {
    display: none;
}

.blanter-msg {
    color: #444;
    padding: 20px;
    font-size: 12.5px;
    text-align: center;
    border-top: 1px solid #ddd;
}

textarea#chat-input {
    border: none;
    font-family: Arial, sans-serif;
    width: 100%;
    height: 20px;
    outline: none;
    resize: none;
}

a#send-it {
    color: #555;
    width: 40px;
    margin-left: 6px;
    font-weight: 700;
    background: #eee;
    border-radius: 6px;
    padding-top: 10px;
}

.first-msg {
    background: #f5f5f5;
    padding: 30px;
    text-align: center;
}

.first-msg span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
}

.start-chat .blanter-msg {
    display: flex;
}

#get-number {
    display: none;
}

a.close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
}

a.close-chat:hover,
a.close-chat:focus {
    color: #00302c !important;
}

/* Animações */
@keyframes showhide {
    from {
        transform: scale(.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes showchat {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes softPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 1px 15px rgba(32,33,36,.28);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 4px 25px rgba(52,175,35,.45);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 1px 15px rgba(32,33,36,.28);
    }
}

@media screen and (max-width: 480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%;
    }
}

.hide {
    display: none;
}

.show {
    display: block;
    animation: showhide 0.5s ease;
}