.whatsapp-section{
    position: fixed;
    right:114px;
    bottom: 46px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 999;
}
.whatsapp-section img{
    width: 50px;
    margin-left: 15px;
    box-shadow: 0 0 4px 0px #999;
    border-radius: 50%;
}
.chat-text {
    background: white;
    position: relative;
    padding: 15px 10px;
    border-radius: 5px;
    color: #000;
    font-size: 12px;
    box-shadow: 0 0 4px 0px #999;
    font: 600 14px/16px 'Open Sans', sans-serif;

}
.chat-text:after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    border-left: 14px solid #fff;
}
