.open-button {
  background-color: #ffba00;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 215px;
  right: -69px;
  width: 180px;
  z-index: 9999;
  opacity: 0.8;
  transform: rotate(270deg);
}

.open-button1 {
  background-color: #b01f17;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 420px;
  right: -69px;
  width: 180px;
  z-index: 9999;
  opacity: 0.8;
  transform: rotate(270deg);
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 10000;
}

/* Add styles to the form container */
.form-container {
  max-width: 350px;
  padding: 10px;
  background-color: white;
}
/* Add styles to the form container input*/
.form-container .form-input1 {
  width: 220px;
  height: 45px;
  border-radius: 5px; 
  padding: 15px;
  margin: 5px 0 5px 0;
  border: none;
  background: #f1f1f1;
}
/* Add styles to the form container input*/
.form-container .form-input {
  width: 100%;
  height: 45px;
  border-radius: 5px; 
  padding: 15px;
  margin: 5px 0 5px 0;
  border: none;
  background: #f1f1f1;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 0 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 100px;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/send button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover , .open-button1:hover {
  opacity: 1;
}
