﻿ 



/* 
=======
 chat 
======
*/


.chat2 h1 {z-index:999;
		   color:red;
		   border: red solid thin;
	}             
/* Button used to open the chat form - fixed at the bottom of the page */
.chat2 .open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  left:20px;  /*  right: 28px; */
  width: 280px;
}

/* The popup chat - hidden by default */
.chat2 .chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 15px;  /* right:15*/
  border: 1px solid #f1f1f1;
  z-index: 999;
}

/* Add styles to the form container */
.chat2 .form-container {
  max-width: 320px;
  padding: 10px;
  background-color: white;
}

/* Full-width textarea */
.chat2 .form-container textarea {
  width: 100%;
/*  padding: 15px;
  margin: 5px 0 22px 0; */
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 34px;
}

.chat2 .card-body {
	padding: 0.5rem !important;
}
.chat2 .card-footer {
	padding:0.4rem 0.5rem !important;
	background-color:#fff !important;
}

/* When the textarea gets focus, do something */
.chat2 .form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/send button */
.chat2 .form-container .btn {
  background-color: #04AA6D;
  color: white;
  /* padding: 16px 20px; padding: 16px 20px; */
  border: none;
  cursor: pointer;
  width: 100%;
/*   margin-bottom:10px; */
  opacity: 0.8;
  height:34px;
}

/* Add a red background color to the cancel button */
.chat2 .form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.chat2 .form-container .btn:hover, .open-button:hover {
  opacity: 1;
}