.chat-bot-wrap {
    position: fixed;
    right: 15px;
    bottom: 0px;
    max-height: 600px;
    background: #fff;
    box-shadow: 0 5px 10px #a8a8a8;
    max-width: 400px;
    width: 100%;
    height: 100%;
	z-index:9999 !important;
}
.chat-bot-head {
    background: #007AFF;
    padding: 15px;
    color: #fff;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
i.hideBot {
    font-size: 20px;
    cursor: pointer;
}
.chat-bot-footer {
    height: 60px;
    display: flex;
    gap: 5px;
    padding: 10px 15px;
    align-items: center;
}
.chat-bot-footer button{
    width: 100%;
    height: 35px;
    padding: 0;
    border: 1px solid #000;
    color: #000;
    border-radius: 6px !important;
	background:transparent !important;
}
.chat-bot-footer button:hover{
	background:000 !important;
	color:#fff;
}
.welcome-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    height: 490px;
    padding: 15px;
	background:#fff;
}
.welcome-form input {
    height: 35px;
    border: 1px solid #999 !important;
    outline: none;
    border-radius: 6px !important;
}
#userQuery {
    border: none !important;
    padding: 0px;
    outline: none !important;
    width: 100%;
}
.chat-bot-content{
    height: 490px;
    padding: 15px;
	background:#f5f5f5;
	overflow-y:scroll;
}

.msg-wrap>img {
    height: 40px;
    width: 40px;
    border-radius: 30px;
}
.msg-wrap {
    display: flex;
    gap: 10px;
    max-width: 80%;
	margin-bottom:10px;
}
.msg-content {
    background: #fff;
    padding: 10px;
    border-radius: 0 10px 10px 10px;
    box-shadow: 0 3px 10px #ddd;
    margin-bottom: 5px;
    color: #000;
}
span.msg-date {
    color: #666;
    font-size: 14px;
}
.user-msg {
    margin-left: 20%;
    justify-content: right;
}
.user-msg .msg-content{
    background: #1F1E1E;
	border-radius: 10px 0 10px 10px;
    color: #fff;
}
.user-msg .msg-date{
    float: right;
}
#chatBotIcon {
    height: 70px;
    width: 70px;
    padding: 15px;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 5px 10px #bfbaba;
    position: fixed;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
	z-index:9999 !important;
}
.chat-bot-wrap {
    position: fixed;
    right: 15px;
    bottom: -600px;
    max-height: 600px;
    background: #fff;
    box-shadow: 0 5px 10px #a8a8a8;
    max-width: 400px;
    width: 100%;
    height: 100%;
    transition: all 1s;
}
#sendBotMsg{
	cursor:pointer;
}
/* width */
::-webkit-scrollbar {
  width: 5px;
	height:5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

@media (max-width:480px){
	.chat-bot-wrap{
		right:0px;
	}
}