#chatbotiframe {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 400px;
  height: 600px;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

#chatbotmessage {
  position: fixed;
  bottom: 90px;
  right: 20px;
  max-width: 250px;
  color: white;
  background-color: #D02895;
  padding: 15px;
  z-index: 56;
  line-height: 26px;
  border-radius: 5px;
  cursor: default;
}

#chatbotmessage span {
  position: absolute;
  top: 3px;
  right: 5px;
  border-radius: 50%;
  background-color: #D02895;
  width: 20px;
  height: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#showchatbot {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  right: 20px;
  bottom: 20px;
  background-color: #D02895;
  z-index: 55;
  font-size: 35px;
}

@media(max-width: 490px) {
  #chatbotiframe {
    max-width: 80%;
  }
}