/*チャットボット::ベースカラー設定
==========================================================*/
/*チャットボット内の背景
-------------------------------------*/
#chatbot {
  background: #fff;
}

/*OPENボタン
-------------------------------------*/
/*ボタン背景とボタンライン*/
.chatbot-btn {
  background: #f2f2f2;
  border-bottom: 3px solid #dadada;
}


/*テキスト＆企業名
-------------------------------------*/
.chatbot-box-txtbx {
  background-color: #136c9b;
  border: solid 1px #136c9b;
}


/*CLOSEボタン
-------------------------------------*/
/*ボタン背景*/
.chatbot-btn.current .btn-bx {
  background: #136c9b;
}

/*ボタンライン*/
.chatbot-btn.current .btn-bx .line:nth-child(1),
.chatbot-btn.current .btn-bx .line:nth-child(3) {
  background: #fff;
}

/*テキスト外枠ボーダーカラー
----------------------------------*/
#chatbot-app {
  border: solid 1px #ccc;
}

/*回答テキストカラー
----------------------------------*/
.human.botui-message-content.text {
  background-color: #136c9b;
  border-bottom: 4px solid #32485c;
}

/*選択ボタン
----------------------------------*/
.botui-actions-buttons-button {
  background-color: #2799d6;
}

/*アナウンステキスト
----------------------------------*/
.botui-message-content {
  color: #595a5a;
  background-color: #ebebeb;
  border-bottom: 4px solid #dadada;
}