#CB_1chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9999;
}
.we-are-here {
  background-color: white;
  border-radius: 5px;
  color: black;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
  animation: fadeIn 0.5s ease-in-out;
}

#CB_1chat-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: -15px;
  margin-right: -15px;
}

#CB_1bot {
  margin: -14px;
  height: 500px;
  width: 350px;
  display: none;
  flex-direction: column;
  border-radius: 10px;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 11;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: white;
}

#CB_1container {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#CB_1header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #3B82F6;
  color: white;

}

.CB_1chat-icon {
  cursor: pointer;
  font-size: 1.2rem;
  margin: 0 5px;
}

#CB_1closeIcon {
  margin-left: auto;
}

#CB_1previousIcon {
  margin-right: auto;
}

#CB_1body {
  flex: 1;
  background-color: #F3F4F6;
  overflow-y: auto;
  margin-bottom: 10px;

}

.CB_1userSection,
.CB_1botSection {
  width: 100%;
  display: flex;
  flex-direction: column;

}

.CB_1separator {
  width: 100%;
}

.CB_1messages {
  max-width: 75%;
  margin: 5px;
  font-size: 0.8rem;
  padding: 10px;
  border-radius: 15px;
}

.CB_1user-message {
  align-self: flex-end;
  background: #3B82F6;
  color: white;
  font-size: 0.8rem;
}

.CB_1bot-reply {
  align-self: flex-start;
  background: #E5E7EB;
  color: black;
  margin-top: 10px;

}

#CB_1inputArea {
  display: flex;
  padding: 10px;
  align-items: center;
  background: #F3F4F6;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);

}

#CB_1userInput {
  flex: 1;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 0.8rem;
  outline: none;

}

#CB_1send {
  border: none;
  padding: 15px;
  background: #3B82F6;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  height: 44px;
  border: none;
  margin-bottom: 9px;
  width: 44px;
  margin-left: 5px;
}

#CB_1send i {
  font-size: 20px;
  color: black;
  margin: -3px;
}

#CB_1predefinedMessages {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 10px;

}

.CB_1predefined-btn,
.CB_1service-option {
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
  text-align: left;
  float: left;
  max-width: 60%;
  margin: 0.5rem;
  font-size: 0.8rem;
  padding: 0.5rem;
  background: #83a6ec;
  color: white;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  border: 2px;

}

.CB_1predefined-btn:hover,
.CB_1service-option:hover {
  background-color: #3B82F6;
  color: white;
}

form.CB_1_form {
  margin: 5px;
  display: table;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #e3f2fd;

  width: 70%;
}

form.CB_1_form label {

  margin-left: -15px;
}

form.CB_1_form input[type="text"],
form.CB_1_form input[type="email"],
form.CB_1_form textarea {
  width: 100%;
  padding: 5px;
  margin: 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);

  box-sizing: inherit;
  margin-left: -15px;
}

form.CB_1_form input[type="submit"] {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  background-color: #3b82f6;
  color: white;
  cursor: pointer;
  margin-top: 0.5rem;

  margin-left: -15px;
}

form.CB_1_form input[type="submit"]:hover {
  background-color: #2563eb;
}

.CB_1typing-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 10px;
  margin: 5px 0;
}

.CB_1typing-indicator span {
  width: 5px;
  height: 5px;
  background-color: black;
  border-radius: 50%;
  margin: 0 4px;
  animation: CB_1typing-animation 1s infinite;
}

@keyframes CB_1typing-animation {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }

  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}