.chat-output {
  flex: 1;
  padding: 20px;
  display: flex;
  background: white;
  flex-direction: column;
}
.chat-output > div {
  margin: 0 0 20px 0;
}

.open-chat {
  position: fixed;
  bottom: 0;
  right: 0;
  padding:10px;
  display: none;
}

.open-chat button{
  border-radius: 50%;
}

.chat-container {
  display: none;
  width:375px;
  height:100px;
  position: fixed;
  bottom: 480px;
  right: 0;
}

@media (min-width: 992px){
  .chat-container { display: block; }
}
.chat-messages-container {
  overflow: auto;
  height: 460px;
  background-color:#fff;
  border: 1px solid #ccc;
}

.chat-header{
    background-color:#eee;
    height:60px;
    border: 1px solid #ccc;
    display: flex;
    align-items:center;
    padding-left:10px;
    width:375px;
    border-radius: 10px 10px 0px 0px;
}

.chat-output .user-message .message {
  background: #0FB0DF;
  color: white;
}
.chat-output .bot-message {
  text-align: right;
}
.chat-output .bot-message .message {
  background: #eee;
}
.chat-output .message {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
}

.chat-input {
  padding: 10px;
  background: #eee;
  border: 1px solid #ccc;
  border-bottom: 0;
  height:80px;
}
.chat-input .user-input {
  width: 100%;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
}
.chat-input .user-input:focus {
  outline: none;
}
