/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  width: 80px;
  height: 80px;
  padding: 10px;
  border: none;
  cursor: pointer;
  position: fixed;
  bottom: 23px;
  right: 28px;
  border-radius: 50%;
  font-size: 11px;
}

.open-button:hover {
  text-decoration: none;
}

.open-button i{
  font-size: 30px;
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9;
}

.cc-inner-container{
  max-width: 300px;
  padding: 12px;
  background-color: white;
  position: relative;
  border: 2px solid #dbdbdb;
}

.cc-inner-container h1{
  font-weight: 600;
  font-size: 17.8px !important;
}

#x {
  position: absolute;
  color: #585858;
  top: -7px;
  right: -8px;
  background-color: transparent;
  font-size: 15px;
}
#x:hover {
  text-decoration: none;
}

/* Full-width textarea */
.form-container .widget-input {
  width: 100%;
  padding: 10px;
  margin: 5px 0 10px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
}

/* When the textarea gets focus, do something */
.form-container .widget-input:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/send button */
.form-container .btn {
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  text-transform: none;
  font-size: 15px;
}

.form-container .btn:hover {
  text-decoration: none;
  border-radius: 0px;
}

.thankyou-text{
  text-align: center;
}

