/* 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: 9;
}

/* 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;
}
	
	
#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{
    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 #eee; border-right: 1px solid #eee; 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-nhrr #chat-header {
	background-color:rgb(61, 180, 229);
	color:#fff;
}