/* CSS Multiple Whatsapp Chat */
#whatsapp-chat {
    position: fixed;
    background: #fff;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, .28);
    bottom: 58px;
    left: 25px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1)
}

.header-chata {
    background: linear-gradient(to right top, #007bff, #fdd804);
    color: #fff;
    padding: 20px
}

.header-chata h3 {
    margin: 0 0 10px
}

.header-chata p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0
}


.info-avatara:before {
    content: '\f232';
    z-index: 1;
    font-family: "Font Awesome 5 Brands";
    background: #23ab23;
    color: #fff;
    padding: 4px 5px;
    border-radius: 100%;
    position: absolute;
    top: 30px;
    left: 30px
}

.aa.informasia {
    padding: 20px;
    display: block;
    overflow: hidden;
    animation-name: showhide;
    animation-duration: 2.5s
}

.aa.informasia:hover {
    background: #f1f1f1
}

.info-chata span {
    display: block
}

#get-labela,
span.chat-labela {
    font-size: 12px;
    color: #888
}

#get-namaa,
span.chat-namaa {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222
}

#get-labela {
    height: 38px;
    width: 40px;
    border-radius: 50px;
    overflow: hidden;
}

.offline {
    position: absolute;
    align-self: flex-end;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    background-color: #f50521;
    /*background-color: #23ab23;*/
}

.online {
    position: absolute;
    align-self: flex-end;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    background-color: #059f05;
    /*background-color: #23ab23;*/
}

#get-labela,
#get-namaa {
    color: #fff
}

span.my-numbera {
    display: none
}

.blanter-msga {
    color: #444;
    padding: 20px;
    font-size: 12.5px;
    text-align: center;
    border-top: 1px solid #ddd
}

.ttextarea#chat-inputa {
    border: none;
    font-family: 'Arial', sans-serif;
    width: 100%;
    outline: none;
    background-color: rgba(182, 226, 246, 0.1);
    resize: none;
    border-radius: 10px;
}

.aa#send-ita {
    color: #555;
    width: 40px;
    margin: -5px 0 0 5px;
    font-weight: 700;
    padding: 8px;
    background: #eee;
    border-radius: 10px
}

.first-msga {
    background: #f5f5f5;
    padding: 8px 5px 8px 5px;
    height: 300px;
    width: 100%;
    overflow: scroll;
    display: block !important;
    flex-direction: column;
}

.first-msga .spanf {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 0px 8px 8px 18px;
    padding: 5px 18px 5px 18px;
    float: left !important;
    columns: 1;
    max-width: 280px !important;
    text-align: justify;
}


.first-msga .spans {
    background: #b8d6ec;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 8px 18px 0px 8px;
    padding: 5px 18px 5px 18px;
    margin-top: 10px;
    float: right !important;
    columns: 2;
    text-align: justify;
    max-width: 280px !important;
}

.start-chata .blanter-msga {
    display: flex
}

#get-numbera {
    display: none
}

.aa.close-chata {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px
}

@keyframes showhide {
    from {
        transform: scale(.5);
        opacity: 0
    }
}

@keyframes showchat {
    from {
        transform: scale(0);
        opacity: 0
    }
}

@media screen and (max-width:480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%
    }
}

.hidea {
    display: none;
    animation-name: showhide;
    animation-duration: 1.5s;
    transform: scale(1);
    opacity: 1
}

.showa {
    display: block;
    animation-name: showhide;
    animation-duration: 1.5s;
    transform: scale(1);
    opacity: 1
}