.chatbotIcon {
    color: #000;
    position: fixed;
    right: 30px;
    bottom: 40px;
    z-index: 100;
    border-radius: 50%;
	background: rgb(170, 170, 170);
    cursor: pointer;
    padding: 10px;
}
.chatbotIcon:hover {
    background: #ea5413;
}
#chatBox{
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 110;
    border: 10px solid #aaa;
    border-radius: 5px;
	background: #fff;
    padding: 10px;
    display:none;
    overflow:auto;
}
#chatBox table {
    position: relative;
    bottom: -50px;
    width: 100%;
}
#chatBox table td:nth-child(2) {
    width: 80%;
}
#chatBox table td:nth-child(1) ,
#chatBox table td:nth-child(3) {
    width: 10%;
}
.chatCont {
    border-radius: 15px;
    padding: 10px;
    display: inline-block;
}
.chatCont *{
    padding: 5px;
    margin: 10px 5px;
}
.bot .chatCont {
    background: #e4e6eb;
    border-top-left-radius: 0px;
}
.client .chatCont {
    background: #82c9ec;
    border-top-right-radius: 0px;
}
.client td {
    text-align: right;
}

.stepBtnBox {
    background: #f3f3f5;
    border-radius: 5px;
}
.stepBtn {
    background: #e4e6eb;
    border-radius: 5px;
    display: block;
}
.stepBtn:hover {
    background: #d3dbf0;
}
.ask img{
	width: 50px;
}