.whatsapp-icon{
    position: fixed;
    bottom: 7px;
    right: 5px;
    width: 70px;
    height: 70px;
}
.chatbox-open{
    width: 320px;
    background-color: rgb(130 67 96);
    display: none;
    border-radius: 20px;
    position: fixed;
    bottom: 95px;
    right: 40px;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.1);
}
.chatbox_header{
    height: 50px;
    width: 100%;
    background-color: rgb(248, 208, 155);
    display: flex;
    justify-content: space-between;
    border-radius: 20px 20px 0px 0px;
}
.person-image-chatbox{
    height: 45px;
    width: 50px;
}
.cross-icon{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgb(29 7 154);
    color: white;
    font-weight: 900;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: -5px;
    left: -10px;
}
.cross-icon img{
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
.chatbox-body{
    /* height: 150px; */
    width: 100%;
    color: white;
  text-align: center;
  padding-bottom: 10px;
}
.chatbox-body .first
{
   font-size:20px; 
   font-weight: 300;
}
.chatbox-body .second{
    font-size:15px; color:rgb(243, 243, 19);
}
.chatbox-body .third img{
   position:relative; top: 18px; right: 5px;
}
.chatbox-body .third span{
    font-size:18px; color:white; text-decoration: underline; font-weight: 700;
}
.chatbox-body .fourth{
    font-size:18px; color:white;
}
.chatbox-footer{
    background-color: white;
    display: flex;
    border-radius: 0px 0px 20px 0px;
}
textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    height: calc(35px + 16px / 2);
    padding: 0 calc(16px / 2);
    font-family: inherit;
    font-size: 16px;
    line-height: calc(31px + 16px/2);
    color: rgb(6, 35, 120);
    background-color: white;
    border: 0;
    outline: 0 !important;
    resize: none;
    overflow: hidden;
}
textarea::placeholder{
    color: rgb(71, 71, 103);
}
.chatbox-footer img{
    height: 30px;
    width: 30px;
    position: relative;
    top: 5px;
}