@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&family=Poppins:wght@200;300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: #fff;
}
.cont {
  --light-color: #fff;
  height: 420px;
  width: 380px;
  background: #fff;
  position: fixed;
  bottom: 50px;
  right: 10px;
  box-shadow: 0px 0px 15px 0px black;
}

.chat-header {
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0px 30px;
  background-color: #000026;
  color: #fff;
  font-size: 1.5rem;
}

.chat-header .logo {
  height: 60px;
  width: 60px;
}
.chat-header img {
  height: 100%;
  width: 100%;
}
.chat-header .title {
  padding-left: 70px;
}

.chat-header .close {
  padding-left: 100px;
}
.chat-body {
  height: 300px;
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  align-items: flex-end;
  overflow-y: auto;
  font-size: 14px;;
}
.chat-input {
  height: 60px;
  display: flex;
  align-items: center;
  border-top: 1px solid #ccc;
}
.input-sec {
  flex: 9;
}
.send {
  flex: 1;
  padding-right: 4px;

}
.btn1 {
	background-color: #f44336;
	width:22px;
    height:26px;
	color: white;
	border:1px;
	border-width: 1px;
	border-style: solid;
	border-color: white;
	-webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
} 
.btn1:hover {
    background-color: #f44336;
    color: white;
}

.btn2 {
	background-color: #008CBA;
	-webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
} 
.btn2:hover {
    background-color: #fff;
    color: black;
}

#message {
  line-height: 30px;
  padding: 8px 10px;
  border: none;
  outline: none;
  caret-color: black;
  font-size: 1rem;
  width: 100%;
}

.chatbot-message,
.user-message {
  padding: 8px;
  background: #ccc;
  margin: 5px;
  width: max-content;
  border-radius: 10px 3px 10px 10px;
}
.chatbot-message {
  background: #09408F;
  color: #fff;
  align-self: flex-start;
  border-radius: 10px 10px 3px 10px;
}
