/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  background-color: #22C15E;
  color: white;
  padding: 12px 10px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 178px;
  border-radius: 15px;
  z-index: 1000;
}

.open-button:focus {
	outline: none;
}

.aa:hover, .aa:focus {
	text-decoration: none !important;
    outline: none !important;
    outline-offset: 0 !important;
    cursor: pointer;
}

.m1 {
	padding-top: 25px;
	padding-left: 5px;
}

.m2 {
	padding-left: 5px;
}

.m1:hover, .m2:hover {
	background-color: #f5f5f5;
}

.avlbl {
	background-color: #22c15e;
    border-radius: 50%;
    width: 12px;
    position: absolute;
    border: 2px solid #22c15e;
    height: 12px;
    margin: -18px 0 0 52px;
}

.pbdy {
	color: #fff;
    background-color: #22C15E;
    padding: 10px 10px;
	text-align: center;
    border-radius: 5px;
    font-size: 12px;
    margin: 18px -10px 0px -10px;
}

.clsse {
    float: right;
    font-size: 15px;
    background-color: #22C15E;
    color: #fff;
    border-radius: 50%;
    padding: 1px 6px;
    cursor: pointer;
    margin-top: -5px;
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 0px solid #f1f1f1;
  z-index: 1000;
  width: 300px;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 200px;
}

/* 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: #4CAF50;
  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: #22C15E;
  color: white;
  padding: 12px 10px;
  font-size: 15px;
  right: 28px;
  width: 178px;
  margin-left: 99px;
  border-radius: 15px;
  margin-bottom: 13px;
}

.cancel:focus {
	outline: none !important;
}

.cancel:hover {
	color: #fff !important;
}
/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

.panel {
	margin-bottom: 0 !important;
	border-radius: 0 !important;
}

.pnl2 {
	border:none; 
	width: 300px; 
	margin-left: -10px;
	margin-top: -3px;
	border-bottom-left-radius: 5px !important;
	border-bottom-right-radius: 5px !important;
}

.mbdy2 {
	margin-right:40px;
	line-height:0;
}

.txxt1 {
	color: #777;
	font-size: 12px !important;
	margin-top: 4px;
}

.txxt2 {
	font-weight:600;
	font-size:15px;
	color: #525050;
	margin-top: -4px;
	margin-bottom: -3px;
}

.txxt3 {
	color: #999;
	font-size:11px;
}