#bot {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 10000;
}
#bot-ttl {
  text-align: center;
  margin: 0;
  padding: 10px 20px;
  background-color: #EA0071;
  color: white;
  font-weight: bold;
  border-radius: 15px 15px 0 0;
  box-sizing: border-box;
  width: 370px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#botOpen {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 10000;
}
#botOpen:hover {
  cursor : pointer;
  opacity: 0.9;
}
#botImg {
  width: 250px;
}
#bot-ttl p {
  margin: 0;
}
#btn-wrap {
  display: flex;
  align-items: center;
}
#btn-wrap  i:first-child  {
  margin-right: 15px;
}
#btn-wrap i {
  cursor : pointer;
}
#btn-wrap i:hover {
  opacity: 0.5;
}
.botui-container {
  background-image: url(../images/botBackgroundImg.png);
  background-repeat: repeat;

}
#my-botui-app {
  width: 370px;
  height: 450px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
  overflow-x: scroll;
}
.botui-messages-container {
  text-align: start;
}

.botui-message-content {
  background-color: #FDDFF0;
  max-width: 80%;
}
.botui-message-content.human {
  background-color: #EA0071;
  color: #FFF;
}

button {
  width: 100%;
}

button.botui-actions-buttons-button {
  background-color: #fff;
  border: #EA0071 1px solid;
  color: #595a5a;
  margin-top: 0;
  margin-bottom: 5px;
}
button:hover {
  background-color: #feeff7;
  color: #EA0071;
}
.btn-wrap {
  display: flex;
  justify-content: center;
}
.w-2 {
  width: 45%;
}
.span-bold {
  color: #EA0071;
  font-weight: bold;
}
.plan {
  background-color: #FFF;
  color: #EA0071;
  margin: 0;
  margin-top: 10px;
  padding: 3px;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
}
.not {
  background-color: #c0c0c0;
  color: white;
}
.b-white {
  color:#595a5a
}
.a-link {
  color: #EA0071;
}


@media screen and (max-width:480px) {
  #botImg {
    width: 200px;
  } 
  #botOpen {
    right: 0;
  }
  #bot {
    right: 0px;
  }
  #bot-ttl {
    width: 300px;
    padding: 5px 20px;
    font-size: 14px;
  }
  #my-botui-app {
    width: 300px;
  }
  .botui-container {
    font-size: 12px;
  }
  .botui-messages-container {
    padding: 5px 10px;
  }
  .botui-message {
    margin: 3px 0;
  }
  .botui-actions-buttons-button {
    padding: 3px 0;
  }
  .botui-message-content {
    max-width: 85%;
    padding: 7px 10px;
  }
}