@import url('http://fonts.cdnfonts.com/css/rawline');

.chatbot-window *, input, button {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}

.chatbot-window {
  font-family: 'Rawline', sans-serif;
  position: fixed;
  bottom: 15vh;
  right: 1.5vh;
  width: 120px;
  height: 105px;
  z-index: 9999;
  cursor: pointer;
}

.chatbot-icon{
  width: 120px;
  height: 105px;
}

.chatbot-window-close {
  display: none;
}

.chatbot-button-close{
  float: right;
  font-weight: 700;
  font-size: 15px;
  margin-top: 5px;
  margin-right: -15px;
  cursor: pointer;
  border: none;
}

.chatbot-body{
  position: fixed;
  bottom: 1.5vh;
  right: 1.5vh;
  width: 400px;
  height: 70%;
  
  border: 1px solid #000;
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

@media screen and (max-height: 768px) {
    .chatbot-body{
      height: 95%;
    }
}

.chatbot-body-hide{
  display: none;
}

.chatbot-header{
  background-color: #071D41;
  width: 100%;
  height: 50px;
  border-radius: 8px 8px 0px 0px;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.chatbot-avatar {
  width: 35px;
  height: 35px;
  margin: 20px;
}

.chatbot-name {
  font-size: 13px;
  color: #fff;
  text-align: center;
  font-weight: 400;
  margin-right: 20px;
}

.chatbot-window-button-close{
  float: right;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  color: white;
  padding-right: 15px;
}

.chatbot-frame{
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0px 0px 8px 8px;
}


@media screen and (max-width: 768px) {
  .chatbot-body{
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;

    border-radius: 0px;
  }

  .chatbot-header{
    border-radius: 0px;
  }
}