.open-button {
    padding: 10px 18px;
    background-color: #f8a33d;
    color: white;
    font-size: 17px;
    width: 73px;
    height: 73px;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    position: fixed;
    bottom: 23px;
    right: 27px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /*z-index:99;*/
}

.popup-msg {
    position: fixed !important;
    top: 59px;
    right: 2px;

}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  z-index: 9;
 
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  border-radius:20px;
  background-color: white;
  color:#777;
  border: 1px solid #b0a6a6;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.form-container .close2 {
    border-radius: 20px;
    position: absolute;
    top: 1px;
    right: 12px;
    background: #ffffff;
    color: #3e2626;
    border: none;
    font-size: 21px;
}

.form-input{
  width: 100%;
  padding: 10px;
  margin: 5px 0 22px 0;
  border: none;
  border-radius:20px;
  background: #ddd;
  resize: none;
  min-height: 15px;
  color:#777;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  border-radius:20px;
  background: #ddd;
  resize: none;
  min-height: 200px;
  color:#777;
}

/* 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: #3fc7f8;
  color: white;
   font-size:17px;
  padding: 10px 20px;
  border: none;
  border-radius:20px;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: #1974D2;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover, .popup_message:hover {
opacity: 0.8;
}