.chat-icon {
    width: 60px;
    height: 60px;
    background-color: #6cb541;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    background-image: url('chat/chat_icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    cursor: pointer;
    z-index: 2;
}

.chat-icon.active{
    background-image: url('chat/closeIcon.png');
    background-size: 40%;

}

.main-chat-box{
    position: fixed;
    right: 20px;
    bottom: 100px;
    background-color: #effeeb;
    display: none;
    z-index: 1;
}

.main-chat-box .traningle-shadow{
    width: 70px;
    height: 80px;
    position: absolute;
    overflow: hidden;
    bottom: -74px;
    right: -14px;
    box-shadow: 0 16px 10px -28px rgba(0, 0, 0, 0.5);
    transform: rotate(180deg);
    z-index: 2;
}

.main-chat-box .traningle-shadow ::after{
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    transform: rotate(45deg);
    top: 75px;
    left: 25px;
    box-shadow: -1px -1px 10px -2px rgba(0, 0, 0, 0.5);
}

.main-chat-box .chatBox{
    width: 200px;
    background-color: white;
    border-radius: 5px;
    position: relative;
    bottom: 0px;
    right: 0px;
    display: inline-block;
    padding: 10px 0;
    margin: 0;
    z-index: 1;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}

.main-chat-box .chatBox li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    float: left;
    font-size: 14px;
    line-height: 21px;
    color: #000;
    margin: 10px 0;
    padding: 0 20px;
}

.main-chat-box .chatBox li:hover{
    background-color: #6cb54166;
}

.main-chat-box .chatBox li span.icon-circle {
    width: 100%;
    float: left;
    font-size: 14px;
    line-height: 21px;
    width: 40px;
    height: 40px;
    background-color: #6cb541;
    border-radius: 50%;
    position: relative;
}

.main-chat-box .chatBox li span.icon-circle img {
    max-width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-chat-box .chatBox li abbr {
    float: left;
    position: relative;
    font-size: 12px;
    line-height: 18px;
    font-family: 'Times New Roman', Times, serif;
    color: #6c757d;
    top: 10px;
    left: 10px;
}

.chat-icon .btn-blinkanima {
    -webkit-animation: online 2s infinite;
     animation: online 2s infinite; 
    /* opacity: 1;
    animation: blinker 1s linear infinite; */
}

@keyframes blinker  {
    50% {
        opacity: 0;
    }
}