/*
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1500;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}*/
.chat-button {
    position: fixed;
    height: 50px;
    width: 50px;
    bottom: 80px;
    right: 15px;
    z-index: 1500;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.chat-window {
    position: fixed;
    bottom: 160px;
    right: 15px;
    width: 300px;
    z-index: 1500;
    max-height: 400px;
    height: 325px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transition: height .3s linear;
}
.chat-header {
    background-color: rgb(11, 164, 134);
    color: white;
    padding: 10px;
    padding-right: 0px;
    text-align: left;

}
.close-button{
    padding-left: 55px;
    text-align: right;
}
.whatsapp-logo {
    height: 30px;
    width: 30px;
}
.down-arrow {
    height: 15px;
    width: 35px;
    cursor: pointer;
}

.welcome-message {
    font-size: small;
    background-color: white;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 150px;
}
.chat-item {
    display:inline-block;
    margin-right:5px;
}
.welcome-message .sender-name {
    font-weight: bold;
    color: rgb(11, 144, 122);
}
.chat-messages {
    text-align: left;
    vertical-align: top;
    flex: 1;
    padding: 10px;

    overflow-y: auto;
    /*background-color: #f0f0f0;*/
    background-image: url(../img/wa-bg.png);
}
.chat-input {
    display: flex;
    padding: 10px;
   /* background-color: #f0f0f0;*/
    background-image: url(../img/wa-bg.png);
}
.chat-input input {
    height: 35px;
    flex: 1;
    padding: 10px;
    border: 0px;
    outline: none;
    border-color: white;
    border-radius: 50px;
    margin-right: 10px;
}
.send-button{
    background-color: rgb(8, 159, 84);
    height: 35px;
    width: 35px;
    padding-left: 10px;
    padding-bottom: 4px;
    border-radius: 50%;
    text-align: center;
    display: block;
}
.send-button img {
    height: 20px;
    width: 20px;
}
/*
.chat-input button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}*/
.chat-input button {
    border: 0px;
    cursor: pointer;
}

