@charset "utf-8";
/* CSS Document */

/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  color: #000000;
  padding: 33px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  position: fixed;
  bottom: 90px;
  right: 10px;
  width: auto;
  background-image:url(chat-icon.png);
  background-size:contain;
  background-repeat:no-repeat;
  z-index:99999;
}

.chat-container {
	width: 350px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	overflow: hidden;	
	position:fixed;
	bottom: 10px;
  	right: 100px !important;
	display:none;
	z-index:999999;
}
.chat-header {
	background: /*#00b4d8;*/ #714955;
	color: white;	
	text-align: center;
	font-size:16px;
	padding: 10px;	
}
.chat-bot-icon
{
	opacity: .9;
	width: 2.3rem;
	height: 2.3rem;
	max-height: unset	
}
.chat-box {
	height: 350px;
	overflow-y: auto;
	padding: 15px;
	display: flex;
	flex-direction: column;
}
.message {
	padding: 5px;
	border-radius: 5px;
	margin-bottom: 10px;
	max-width: 90%;
}
.bot-message {
	background: /*#00b4d8;*/ #F3F3F3;
	align-self: flex-start;
	color:/*#FFF;*/ #333;
	font-size:0.9em;
}
.user-message {
	background: #dcf8c6;
	align-self: flex-end;
}
.input-area {
	display: flex;
	padding: 10px;
	border-top: 1px solid #ddd;
	background: white;
}
.chattextarea {
	flex: 1;
	padding: 10px;
	border: none;
	outline: none;
	font-size:0.9em;
}
.sub-button {
	background: /*#00b4d8;*/ #67595E;
	color: white;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
}
.closbtnchat
{
	background-color:#FFF1B9;
	margin-left:10px;
}

ins
{
	text-decoration:none !important;
	padding:2px;
	cursor:pointer;
	color:#111;	
}
.message table tr td{
	border:1px solid #CCC;
	border-radius:8px;
	text-align:center;
	padding:3px;
	font-size:0.9em;	
	color:#333;
	width:100%;
}

.language
{
	font-size:0.8em;
}

.firstfaqtab
{
	width:auto;
	border:1px solid #CCC;
	border-radius:8px;
	text-align:center;
	margin-bottom:10px;
}
.firstfaqtab tr
{
	border-bottom:1px solid #CCC;
	cursor:pointer;
}
.firstfaqtab tr td{
	padding:3px;
	font-size:0.85em;	
	color:#333;
}
.user-details
{
	min-height:150px;
	position: absolute;
	width:250px;
	margin-left:8%;
	bottom:125px;
	right:15px;
	background-color:#EEE;
	padding:10px;
}
/* FAQ Buttons */
.button-4 {
  appearance: none;
  background-color: #FAFBFC;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 6px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
  width:auto; margin:5px;
}

.button-4:hover {
  background-color: #F3F4F6;
  text-decoration: none;
  transition-duration: 0.1s;
}

.button-4:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.button-4:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.button-4:focus {
  outline: 1px transparent;
}

.button-4:before {
  display: none;
}

.button-4:-webkit-details-marker {
  display: none;
}

/* Responsive Code */

@media screen and (min-width: 900px) {
  .chat-container{
	  width:550px;
	  right: 0px;
  }
}

@media screen and (max-width: 900px) and (min-width: 720px) {
  .chat-container{
	  width:510px;
	  right: 0px !important;
  }
}

@media screen and (max-width: 640px) and (min-width: 480px) {
  .chat-container{
	  width:380px;
	  right: 0px !important;
  }
  .chat-header {	
	font-size:14px !important;	
	}
}

@media screen and (max-width: 480px) and (min-width: 200px) {
  .chat-container{
	  width:340px;
	  right: 0px !important;
  }
  .chat-header {	
	font-size:14px !important;	
	}
}