
#chat-div{
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* background-color: #000; */
    color: white;
    padding: 10px;
    z-index:9999999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    color:#40C351;
  }


#support-closer-div{
    position: relative;
    width:100%;
    top:10px;
    display: block;
    /* border:solid 1px grey; */
    text-align: right;
    font-weight: bold;
    font-size: 16px;
}
#support-closer:hover{
    color:red;
    cursor: pointer;
}
#support-social-icons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:5px;

    position: relative;
    left:150px;
    animation:chat 2s ease forwards;

}
@keyframes chat {
    to{left:0px;}
}
@-webkit-keyframes chat {
    to{left:0px;}
}

#support-social-icons img:hover{
  transform: scale(0.9);
}