.bot {
    z-index: 99;
    right: 20px;
    bottom: 40px;
    display: block;
    position: fixed;
}

.bot_box{
    width: 355px;
    height: 60px;
    position: absolute;
    top: 105px;
    right: 60px;
    background-color:#CA66A3;
    border-radius: 20px;/*角の丸み*/
}
.bot_icon{
    position: absolute;
    top: 2px;
}
.bot_text {
    width:310px;
    margin: 5px 0px 0px 40px;
    color: #fff;
    font-size: 16px;
}

.chat_text {
    z-index: 99;
    right: 25px;
    bottom: 40px;
    display: block;
    position: fixed;
}
.chat_text {
    background-color: #fff;
    /*
    color: #178efe;
    */
    border: solid 7px #178efe;
    border-radius: 25px;

}
.chat_footer {
    margin: 20px 10px;
}

*.chat_footer input{
    -webkit-box-sizing: unset;
    -moz-box-sizing: unset;
    box-sizing: unset;
}

.chat_footer input{
	width: calc(100% - 75px);
    border-radius: 4px;
    border: 1px solid #9E9E9E;
    font-family: Arial;
    font-size: 12px;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 20px;
    padding: 5px;
}
.chat_footer button{
    color: #fff;
    font-size: 12px;
    line-height: 30px;
    min-width: 50px;
    background: #2196F3;
    text-align: center;
    border: 0;
    border-radius: 5px;
}
.botui-message-content{
	background-color: #909AA9;
	color: #fff;
	line-height: 20px;
}

.botui-message-content a {
	color: #0000EE;
	text-decoration: underline;
}

.botui-message-content.human {
	background-color: #178efe;
}

.botui-actions-buttons-button {
	color: #178efe;
	border: solid 3px #178efe;
    	border-radius: 25px;
	background: #fff;
}
.chat_header {
	text-align: right;
	background: #178efe;
}
#panel-btn{
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
}
#panel-btn-icon{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
/*  height: 2px;*/
  margin: -1px 0 0 -7px;
  background: #2196F3;
  background: #ffffff;
  transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after{
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 2px;
  background: #2196F3;
  background: #ffffff;
  transition: .3s;
}
#panel-btn-icon:before{
  margin-top: -6px;
}
#panel-btn-icon:after{
  margin-top: 4px;
}
#panel-btn #panel-btn-icon:before, #panel-btn #panel-btn-icon:after{
  margin-top: 0;
}
#panel-btn #panel-btn-icon:before{
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#panel-btn #panel-btn-icon:after{
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
@media only screen and (max-width: 480px) {
	.bot {
	    right: 5px;
	    bottom: 25px;
	}
	.bot_box {
        width: 255px;
        top: 50px;
        height: 40px;
        right: 52px;
	}
	.bot_icon {
	    top: -9px;
	}
	.bot_text {
	    font-size: 10px;
	    width: 200px;
	}
	.bot_box + img {
		width: 50px;
	}
	.chat_text {
	    right: 15px;
	    bottom: 10px;
        width: 90%;
        height: 400px;
	}
	.botui-app-container {
	    width: 100%;
	    height: calc(100% - 100px);
	}
}