/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  background-color: #ff656a;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  
  position: fixed;
  bottom: 23px;
  right: 28px;
  border-radius:50px;
  z-index:999;
}
.close1-button {
  background-color: #04797d;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  
  position: fixed;
  bottom: 23px;
  right: 28px;
  border-radius:50px;
  z-index:999;
}
/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  
  z-index: 999;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  
  height: 100%;
    padding: 20px;
    background: #fff;
   box-shadow: 0 10px 30px rgb(0 0 0 / 50%);
    box-sizing: border-box;
    /* bottom: 80px; */
    margin-bottom: 58px;
    margin-right: 43px;
}

/* Full-width textarea */
.form-container input,textarea {
	width: 100%;
	height: 36px;
	padding:5px;
	margin-bottom:10px;
	box-sizing:border-box;
	border:1px solid rgba(0,0,0.5);
	outline: none;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}
.form-container input[type="submit"]
{
background: #ff656a;
color: #fff;
cursor:pointer;
border:none;
font-style:18px;
}

/* Set a style for the submit/send button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  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 {
  opacity: 1;
}