* {box-sizing: border-box;}

/*body {background:#212223;font-family: Roboto;color:#efdefe;}*/
h3{line-height:0rem;}

.chat-popup h3{
    margin-bottom:15px;
    color:#fff;
}
.open-button i{
	font-size: 35px;
}

/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  padding: 15px 12px;
    background-color: #2db3b6;
    color: white;
    /* font-size: 17px; */
    max-width: 300px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: fixed;
    bottom: 23px;
    right: 28px;
    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: 30px 10px;
  border-radius:20px;
  background-color: #2db3b6;
  color:#777;
}
.form-container input {
  width: 100%;
  padding: 10px;
  margin: 5px 0 10px 0;
  border: none;
  border-radius:10px;
  background: #fff;
  resize: none;
  min-height: 40px;
  color:#777;
}
/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 10px 0;
  border: none;
  border-radius:10px;
  background: #fff;
  resize: none;
  min-height: 80px;
  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: #d6320a;
  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: #08810a;
}

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