@charset "UTF-8";

#chatbot {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
  max-width: 460px;
  width: 100%;
  max-height: 600px;
  background: #eee;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, .16);
  font-size: 13px;
}

#chatbot.is-minimized {
  cursor: pointer;
}

#chatbot .cb-header {
  position: relative;
  height: 32px;
  line-height: 32px;
  padding-right: 32px;
  background-color: #ff0000;
}

#chatbot .cb-title {
  padding: 0 30px;
  background-image: url('../images/arrow_up.png');
  background-repeat: no-repeat;
  background-position: right 14px center;
  color: #fff;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}

#chatbot .cb-title.is-opened {
  background-image: url('../images/arrow_down.png');
}

#chatbot .cb-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  font-size: 0;
  line-height: 0;
  background: url('../images/btn_close.png') no-repeat center center #444;
  background-size: 8px 8px;
  cursor: pointer;
  outline: none;
  appearance: none;
}

#chatbot .cb-avatar-header {
  display: block;
  position: absolute;
  top: 13px;
  left: 18px;
  width: 37px;
  height: 37px;
  background-color: #fff;
  border-radius: 50%;
}

#chatbot .cb-message {
  padding: 8px 0;
  margin: 0;
  font-size: .923em;
  text-align: center;
}

#chatbot .cb-body {
  display: none;
  max-height: 532px;
  height: calc(80vh - 67px);
  overflow: hidden;
}

#chatbot-body iframe {
  display: block;
  width: 100%;
  height: 100%;
}
