.watson-bot{
    background-color: #eeeeee;
    width: 330px;
    display: inline-block;
    border-radius: 10px 10px 30px 10px;
    margin-bottom: 20px;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    right: 0;
    display: none;
    z-index: 9999;
}

.discussion-bot{
    height: 430px;
    overflow-y: scroll;
}

.message{
    border-radius: 3px;
}

.input-bot{
    background-color: #fd9b00;
    padding: 8px 15px;
}

.user-input-value{
    background-color: #fff;
    width: 230px;
    margin-right: 5px;
    height: 35px;
}

.watson-bot .user-input-submit{
    background: url('../images/chatbot_ok_button.png');
    width: 60px;
    height: 61px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 0 10px 10px 0;
}

.header-bot{
    border-bottom: 1px solid #d6d6d6;
}

.header-bot p{
    font-size: 20px;
    color: #000;
    display: inline-block;
    padding: 21px;
    margin: 0;
    font-weight: bold;
}

.header-bot p span{
    color: #fd9b00;
}

.header-bot .close-button-bot{
    float: right;
    text-transform: uppercase;
    text-decoration: underline;
    padding: 24px 21px 24px 0;
    color: #777777;
    cursor: pointer;
}

.discussion-bot{
    padding: 20px 10px;
}

.message{
    font-size: 0;
    margin: 15px 0;
    clear: both;
}

.message .message-icons,
.message .message-inner{
    display: inline-block;
    font-size: 14px;
}

.message .date{
    color: #ababab;
}

.message .message-inner{
    width: 66%;
    background-color: #fff;
    border-radius: 5px;
    padding: 13px 17px;
    position: relative;
}

.message .message-inner:before{
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 10px solid #fff;
    position: absolute;
    top: 8px;
    left: -10px;
}

.message.received .message-inner:before{
    border-right: none;
    border-left: 10px solid #eed8be;
    left: auto;
    right: -10px;
}

.message.received .message-inner{
    background-color: #eed8be;
    word-wrap: break-word;
}

.message .message-icons{
    text-align: center;
}

.message .message-icons .icon{
    width: 30px;
    height: 30px;
    display: inline-block;
}

.message.sent .message-icons{
    float: left;
    width: 15%;
    margin-right: 2%;
}

.message.sent .message-inner{
    margin-right: 17%;
    word-wrap: break-word;
}

.message.sent .message-icons .icon{
    background: url('../images/chatbot_smile.png');
}

.message.received .message-icons{
    float: right;
    width: 15%;
    margin-left: 2%;
}

.message.received .message-inner{
    margin-left: 17%;
}

.message.received .message-icons .icon{
    background: url('../images/chatbot_face.png');
}

.watson-bot-oppener{
    position: fixed;
    top: 50%;
    right:0;
    background-color: #fff;
    z-index: 999;
    cursor: pointer;
    font-size: 0;
}

.watson-bot-oppener span{
    display: inline-block;
    width: 60px;
    height: 60px;
    vertical-align: top;
}

.watson-bot-oppener .icon-openner{
    background: url('../images/chatbot_open_button.jpg');
}

.watson-bot-oppener .icon-openner-text{
    text-align: center;
    padding-top: 10px;
    width: 70px;
    font-size: 13px;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    display: inline-block;
}

@media (max-width: 600px) {
    .lala {
        display: none;
    }
    .watson-bot-oppener .icon-openner-text{
        display: none;
    }

    .watson-bot-oppener {
        bottom: 0;
        top: auto;
    }
}

