#csayhello {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999999999999999;
  height: auto;
  float: right;
}
#csayhello .icon {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
cursor: pointer;
color: #333;
background: #4643FF;
width: 45px;
height: 35px;
float: right;
border-radius: 6px;
padding: 10px 15px;
transition: 0.3s all;
box-shadow: 0 30px 50px #0000000d;
overflow: hidden;
}
#csayhello .icon:hover {
  box-shadow: 0 5px 20px rgb(209 231 221);
}
#csayhello .icon .user {
  visibility: hidden;
  margin-left: -100px;
}
#csayhello .icon.expanded {
  width: 270px;
  justify-content: space-between;
}
#csayhello .messenger.expanded {
  visibility: visible;
  height: 389px;
  width: 270px;
}
#csayhello .icon.expanded .user {
  visibility: visible;
  margin-left: 0;
  transition: 0.5s;
}

#csayhello .messenger {
  background-color: #fff;
  border: 1px solid #0f513238;
  box-shadow: 0 30px 50px #0000000d;
  padding: 10px;
  margin-bottom: 10px;
  height: 390px;
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.7s;
  width: 0;
  height: 0;
  visibility: hidden;
}
#csayhello .chatroom {
  height: 290px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  touch-action: pan-y;
}
#csayhello .chatroom::-webkit-scrollbar {
  display: none;
}
#csayhello .type-area input.typing {
  width: 100%;
  outline: none !important;
  border: 1px solid rgb(227 230 234);
  border-radius: 5px;
  padding: 8px 40px 8px 14px;
  height: 40px;
  font-size: 12px;
}
#csayhello .type-area {
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 12px rgb(0 0 0 / 3%);
  margin-top: 10px;
}
#csayhello .type-area span.send {
  position: absolute;
  right: 14px;
  top: 9px;
  cursor: pointer;
  font-size: 18px;
}
#csayhello .msg {
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #2d2d2d;
}
#csayhello .msg .bubble {
  padding: 2px;
  border-radius: 0px;
  background-color: #fdfdff;
}
#csayhello .msg.msg-right .bubble {
  color: #333;
  /*background-color: #fff;*/
}
#csayhello .msg .bubble .name {
  color: #393d4a;
  font-size: 12px;
  font-weight: 500;
}
.msg.msg-left {
  align-items: flex-start;
}
.msg.msg-right {
  align-items: flex-end;
}
#csayhello .qboxtime {
font-size: 12px;
color: #2d2d2d;
margin-bottom: 10px;
font-weight: 600;
}
.qbtn{
  text-align: left;
  background: #fff;
border: 1px solid purple;
border-radius: 6px;
margin-bottom: 4px;}
.qchatbot {
  border-radius: 50px;
padding: 2px;
background: var(--contentbackground);
width: 24px !important;
height: 24px !important;
margin-right: 6px;
}

#bubload{
    position:relative;
    width:240px;
    height:29px
}

.bubload{
    position:absolute;
    top:0;
    background-color:#07818F;
    width:29px;
    height:29px;
    -moz-animation-name:bounce_bubload;
    -moz-animation-duration:1.3s;
    -moz-animation-iteration-count:infinite;
    -moz-transform:scale(.3);
    -webkit-animation-name:bounce_bubload;
    -webkit-animation-duration:1.3s;
    -webkit-animation-iteration-count:infinite;
    -webkit-transform:scale(.3);
    -webkit-border-radius:19px;
    -ms-animation-name:bounce_bubload;
    -ms-animation-duration:1.3s;
    -ms-animation-iteration-count:infinite;
    -ms-transform:scale(.3);
    -ms-border-radius:19px;
    -o-animation-name:bounce_bubload;
    -o-animation-duration:1.3s;
    -o-animation-iteration-count:infinite;
    -o-transform:scale(.3);
    -o-border-radius:19px;
    animation-name:bounce_bubload;
    animation-duration:1.3s;
    animation-iteration-count:infinite;
    transform:scale(.3);
    border-radius:19px;
}

#bubload_1{
    left:0;
    -moz-animation-delay:0.52s;
    -webkit-animation-delay:0.52s;
    -ms-animation-delay:0.52s;
    -o-animation-delay:0.52s;
    animation-delay:0.52s;
}

#bubload_2{
    left:30px;
    -moz-animation-delay:0.65s;
    -webkit-animation-delay:0.65s;
    -ms-animation-delay:0.65s;
    -o-animation-delay:0.65s;
    animation-delay:0.65s;
}

#bubload_3{
    left:60px;
    -moz-animation-delay:0.78s;
    -webkit-animation-delay:0.78s;
    -ms-animation-delay:0.78s;
    -o-animation-delay:0.78s;
    animation-delay:0.78s;
}

@-moz-keyframes bounce_bubload{
    0%{
    -moz-transform:scale(1);
    background-color:#07818F;
    }

    100%{
    -moz-transform:scale(.3);
    background-color:#DEDADE;
    }

}

@-webkit-keyframes bounce_bubload{
    0%{
    -webkit-transform:scale(1);
    background-color:#07818F;
    }

    100%{
    -webkit-transform:scale(.3);
    background-color:#DEDADE;
    }

}

@keyframes bounce_bubload{
    0%{
    transform:scale(1);
    background-color:#07818F;
    }

    100%{
    transform:scale(.3);
    background-color:#DEDADE;
    }

}
