/* .section__chat-bot {
    width: 60px;
    height: 60px;
    background-color: #017e8f;

    position: fixed;
    right: 30px;
    bottom: 30px;
    
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
 */

 .section__chat-detail {
    /* display:none; */
    width: 400px;
    position: fixed;
    right: 10px;
    bottom: 50px;
    z-index: 999;
    transition: ease-in-out 400ms;
    -webkit-transition: ease-in-out 400ms;
    -moz-transition: ease-in-out 400ms;
    -ms-transition: ease-in-out 400ms;
    -o-transition: ease-in-out 400ms;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.botui-container {
    background: #e9e9e9;
}

.section__chat-detail header {
    padding: 15px 20px;
    background-color:#017e8f;
    position: relative;
    color: #fff;
}
.section__chat-detail header span {
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 12px;
    right: 15px;
    z-index: 999;
}

.section__chat-detail header span:hover {
    opacity: 0.8;
}
/* 
    update chatbot plugin
*/

 .botui-message-content {
    padding: 6px 13px;
    color: #ffffff;
    background-color: #1ba3c2;
}


.botui-message-content.human {
    background-color: rgb(10, 142, 70);
}

.botui-actions-buttons-button {
    background-color: rgb(233, 84, 30);
}

.botui-actions-container, .botui-messages-container {
    padding: 0 20px;
}

button.botui-actions-buttons-button {
    margin: 2px;
}



@media(max-width: 574px){
    .section__chat-detail {
        width: 96%;
        left: 2%;
        bottom: 10px;
    }

    .botui-app-container {
        height: 70vh;
     }
}