/*
Plugin Name: X9-Chatbot
Description: A simple xchat plugin for WordPress. 
What's New: Some functions and messages are implemented to use case such as previous state, main menu and continuous chat.                 
Version: 1.8
Author: XTRAIL
*/


.chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 0px;
    width: 280px;
    height: 350px;
    border-radius: 10px;
    /* box-shadow: 1px 0px 1px 1px #ffffff; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    z-index: 4;
    border: 1px solid #ffffff;
}

.chatbot-container.open {
    transform: translateX(0);
}

.chatbot-titlebar {
    background-color: #000;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: start;
    
}
  
.hamburger1 {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  vertical-align: middle;
}
  
.menu1 {
  display: none;
  flex-direction: column;
  background-color: #000000;
  position: absolute;
  top: 45px;
  width: 50%;
  padding: 5px;
  right: 0;
}
  
.menu1 li {
  margin: 5px 0;
  color: #fff;
}

.menu1 li:hover {
    background-color: #1e73be;
}
  

.chatbot-title {
    margin: 0;
    font-size: 16px;
    line-height: 1;
    color: white;
    text-align: left;
    font-weight: 600;
    font-family: poppins;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 15px;
    cursor: pointer;
}

.chatbot-close:hover {
    background-color: #1e73be;
    color: #ffffff;
}

.chatbot-messages {
    flex-grow: 1;
    overflow: auto;
    padding: 10px;
    background-color: #ffffff;
}

.chatbot-input {
    height: 25px;
    border: none;
    padding: 7px;
    flex-grow: 1;
    background-color: #000;
 
}

#simple-chatbot-input {
    background-color: #000000;
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    height: 42px;
    resize: none;
    padding: 0 10px;
}


.chatbot-send {
    background-color: #000;
    color: white;
    cursor: pointer;
    border: none;
    flex-grow: 1;
    margin: 2px 2px 2px 7px;
}

.chatbot-send:hover {
    background-color: #1e73be;
    color: #ffffff;
    border-radius: 5px;
    margin: 2px 2px 2px 7px;

}

.chatbot-open {
    position: fixed;
    bottom: 10px;
    right: 100px;
    background-color: #000;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    cursor: pointer;
    z-index: 4;
}

.chatbot-open:hover {
    color: #ffffff;
    background-color: #1e73be;
}

.fa-solid {
    font-size: 25px;
    font-weight: 900;
    align-items: center;
    vertical-align: middle;
    color: #ffffff;
}

.user-message {
    max-width: fit-content;
    margin: 2px;
    float: right;
    font-size: 14px;
    background-color: #1e73be;
    border-radius: 100%;
    color: #ffffff;
    
}

.bot-message {
    width: fit-content;
    margin: 2px;
    float: left;
    font-size: 14px;
    border-radius: 100%;
    color: #000;
}

.bot-message1 {
    width: fit-content;
    margin: 2px;
    float: left;
    font-size: 14px;
    border-radius: 100%;
    color: #000;
    margin-top: 0;
}

.bot-message1 h3 {
    color: #1e73be;
    font-size: 20px;
    padding: 0;
    margin-bottom: -15px;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

.textbar {
    border: 5px;
    border-style: solid;
    border-color: #000;
    background-color: #000;
    
}

.h3 {
    color: #1e73be;
}



/* .powered {
    margin: 0;
    padding: 0;
    background-color: #000;
}

.info {
    font-size: 12px;
    text-align: center;
    margin: 0;
    padding: 5px 0;
} */