.chatbot{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    flex-direction: column;
    display: flex;
    right: 16px;
    position:fixed;
    bottom: 16px;
    z-index: 1100;
    
}
#abreChat{
  border-radius: 50%;
  border: 2px solid rgb(32, 36, 102);
  position:relative;
  width: 62px;
  height: 62px;
  background-color: #fff;
  box-shadow: 0 12px 28px rgba(10,18,58,.24);
}

#mensajeBienv{
  background-color: orange;
  border-radius: 20px 20px 0 20px;
  text-align: center;
  font-size: 15px;
  font-family:Arial, Helvetica, sans-serif;
  padding: 1px;
  margin-bottom: 8px;
  margin-right: 70px;
  
}

#open-btn{
  border: none;
  background-color: rgb(233, 116, 6);
  color: white;
  padding: 7px ;
  cursor: pointer;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  border-radius: 10px 10px 0 0;
  width: min(315px, calc(100vw - 28px));

}
#input-container {
  display: flex;
  
}
#send-btn {
  padding: 10px 15px;
  background-color: rgb(233, 116, 6);
  color: white;
  border: none;
  cursor: pointer;

}
#send-btn:hover {
  background-color: rgb(255, 123, 0);
}
#user-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  
}

#chat-container {
  width: min(315px, calc(100vw - 28px));
  height: min(300px, 48vh);
  padding: 10px;
  background-color: #f9f9f9;
  overflow-y: scroll;
  
}

.message {
  margin: 5px 0;
  padding: 10px;
  border-radius: 10px;
}
.user {
  background-color: #d1f7c4;
  align-self: flex-end;
}
.bot {
  background-color: #e0e0e0;
  align-self: flex-start;
}

#chatea{
  display: none;
  box-shadow: 0 18px 42px rgba(10,18,58,.2);
  
}

@media screen and (max-width: 560px) {
  .chatbot {
    right: 10px;
    bottom: 10px;
  }

  #abreChat {
    width: 56px;
    height: 56px;
  }

  #mensajeBienv {
    display: none;
  }

  #open-btn,
  #chat-container {
    width: calc(100vw - 20px);
  }
}
