* {box-sizing: border-box;}

/* Button used to open the chat form - fixed at the bottom of the page */

.open-button {
    background-color: #555;
    color: white;
    padding: 5px 2px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 10px;
    right: 55px;
    width: 250px;
    z-index: 9999;
    display: none;
} 

/* The popup chat - hidden by default */
.chat-popup {
  position: fixed;
  bottom: 10px;
  right: 55px;
  border: 1px solid #afd5dc;
  z-index: 9;
  display: block;
  min-width: 250px;
}

/* Add styles to the form container */
.form-container {
  max-width: 250px;
  padding: 2px;
  background-color: white;
  
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 0px;
  margin: 1px 0 15px 0;
  border: 1px solid #afd5dc;
  /*background: #f1f1f1;
  resize: none;*/
  resize: vertical;
  
}

.form-container input {
  width: 100%;
  padding: 1px;
  margin: 1px 0 1px 0;
  border: none;
  /*background: #609090;
  /*resize: none;*/
  resize: vertical;
  border: 1px solid #afd5dc;
  
}

.form-container input::placeholder {
  color:#057c91;
}

.form-container select {
  width: 100%;
  padding: 1px;
  margin: 1px 0 10px 0;
  border: none;
  /*background: #609090;*/
  color:#057c91;
  resize: vertical;
  border: 1px solid #afd5dc;
  font-size: 12px;
}

/* 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: #0cab75;
  color: white;
  padding: 4px 8px;
  border: none;
  cursor: pointer;
  width: 45%;
  margin-bottom:3px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: #ee1c24;
}

.form-container .info {
  background-color: #0296b0;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

.show{
	display: block;
}
.hide{
	display: none;
}

