/* CSS Document */

/* Button used to open the chat form - fixed at the bottom of the page */
#gen-main .open-button {
  color: white;
    border: none;
    cursor: pointer;
    /* opacity: 0.8; */
    position: fixed;
    bottom: 10px;
    right: 24px;
    width: 80px;
    background: white;
    height: 80px;
    padding: 10px;
}

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

/* Set a style for the submit/send button */
#chat-form .btn {
  background-color: #5009b5;
  color: white;
  padding: 6px 10px;
  border: none;
  cursor: pointer;
  margin-bottom:10px;
  opacity: 0.8;
  line-height:1em; 
	
}

/* Add a red background color to the cancel button */
#gen-main .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
#gen-main .btn:hover, .open-button:hover {
  opacity: 1;
}

/* Screen reader only styles for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Chat button focus indicator */
#chatImage:focus {
  outline: 2px solid #0051a8;
  outline-offset: 2px;
  border-radius: 4px;
}

#chatImage {
    border-radius: 34px 8px 34px 34px;
    position: fixed;
    /*z-index: 1000;*/
    width: 60px;
    height: 60px;
    /* bottom: 0; */
    bottom: 10px;
    right: 10px;
    /* border-radius: 6px 6px 0px 0px; */
    background: #34a647;
    /* padding: 8px 0; */
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 5px 4px 0 rgba(0,0,0,.26);
}

#chatImage.closed{
    background: red !important;
}
#chatImage.init{
    bottom: -60px;
    -moz-animation: slide .5s ease 1s forwards;
   -webkit-animation: slide .5s ease 1s forwards;
   -o-animation: slide .5s ease 1s forwards;
   -ms-animation: slide .5s ease 1s forwards;
    animation: slide .5s ease 1s forwards;
}
#chatImg.genchat {
    position: absolute;
    top: 15px;
    left: 8px;
    height: 35px;
    z-index: 1;
}
	
.chat-popup { width:100%; max-width:360px; right:7px; }
#chat-header { 
	padding:40px 20px 20px;
	background-color:rgb(0, 187, 186); 
	border-top-left-radius:10px;
	border-top-right-radius:10px;
	font-size:14px;
	line-height:1.2em;
}

#chat-logo { max-width:100%; margin:15px 0; }
#chat-form { padding:20px 20px 20px 20px; border-left: 1px solid #dfdfdf; border-right: 1px solid #dfdfdf; background-color: #ffffff; }
#chat-close { width:20px; float:right; cursor:pointer; margin-top:-25px; }
.chat-field { margin-bottom: 10px; text-align:center;  }
.chat-field:last-child { margin-bottom: 0px; }
.chat-field input { width:100%; height:35px; padding: 20px 10px; font-size:14px; }
#chat-form #startChat.btn { padding: 12px 30px; font-size:14px; line-height: 1em !important; border-radius: 10px; }
	
#chatImage { display:none; }
#chatCtrl { display:none; }
#genCtrl { display:none; }


.lob-bhhl #chat-header {
	background-color:rgb(245, 246, 246);
	color:#000;
	border-left: 1px solid #dfdfdf; 
	border-right: 1px solid #dfdfdf;
	border-top: 1px solid #dfdfdf;
}
.lob-bhhl #chat-logo { height:60px; width:auto; }
#genCtrl.lob-bhhl #chatImage { 
	background-color: rgb(247, 198, 0);
	border-radius: 50px 8px 50px 50px;
    position: fixed;
    width: 90px;
    height: 90px;
    bottom: 10px;
    right: 10px;
}
.lob-bhhl #chatImg.genchat {
    position: absolute;
    top: 23px;
    left: 21px;
    height: 50px;
    z-index: 1;
}
.lob-bhhl #chat-form .btn {
	background-color: #388557;
	
}