/* 
LOOKUPS_ESTORE_DOMAIN_SCRIPTS_estoreProductChatbot.css
CUSTOM CSS 
*/

/* Button used to open the chat form - fixed at the bottom of the page */
.chatbotOpenButton {
  background-color: #FFFFFF;
  color: white;
  /*padding: 16px 20px;*/
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  box-shadow: 0 8px 4px 0 rgba(179, 80, 74, 0.9), 0 12px 40px 0 rgba(179, 80, 74, 0.59);
  /* width: 280px; */
}

/* The popup chat - hidden by default */
.chatbotFormPopup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 999;
}

/* Add styles to the form container */
.chatbotFormContainer {
	width:500px;
  max-width: 500px;
  padding: 10px;
  background-color: white;
}

/* Full-width textarea */
.chatbotFormContainer textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  resize: none;
  min-height: 100px;
}

/* When the textarea gets focus, do something */
.chatbotFormContainer textarea:focus {
  outline: none;
}

/* Set a style for the submit/send button */
.chatbotSendButton, .button, .btn {
    background: #4CAF50; /* #7ab55c */
    font-size: 16px;
    padding: 0.5625em 1.875em !important;
    color: white !important;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
    border: none;
    text-shadow: none;
    font-weight: normal;
	width: 100%;
}

.chatbotSendButton:hover, .button:hover, .btn:hover {
    text-decoration: none;
    background: #6aa74c;
    text-shadow: none;
}


/* chatbot chats */
.chatbotContainer {
  border: 2px solid #dedede;
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 10px;
  margin: 10px 0;
}

.chatbotContainer {
  border-color: #ccc;
  background-color: #ddd;
}

.chatbotContainer::after {
  content: "";
  clear: both;
  display: table;
}

.chatbotContainer img {
  float: left;
  max-width: 60px;
  width: 100%;
  margin-right: 20px;
  border-radius: 50%;
}

.chatbotContainer img.right {
  float: right;
  margin-left: 20px;
  margin-right:0;
}

.chatbotTimeRight {
  float: right;
  color: #aaa;
}

.chatbotTimeLeft {
  float: left;
  color: #999;
}

@media only screen and (max-width: 580px) {
.chatbotFormContainer {
    width:auto!important;
    max-width:auto!important;
}

@media only screen and (max-width: 740px) {
.chatbotFormContainer {
    width:auto!important;
	max-width:auto!important;
}