#chatWithBotMan {
    position: fixed;
    bottom: 0;
    right: 25px;
    z-index: 12;
    border: none;
    outline: none;
    background-color: #880016;
    color: white;
    cursor: pointer;
    padding: 7px 15px;
    margin: 0;
    border-radius: 10px 10px 0px 0px;
}
.chatBotBody {
   position: fixed;
   bottom: 10;
   right: 10;
   z-index: 100;
   display: none;
}

.chatbot-container {
    width: 430px;
    height: 80vh;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/*.chat-header {*/
/*    background-color: #8b0000;*/
/*    color: white;*/
/*    padding: 10px;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    border-bottom: 4px solid white;*/
/*}*/

/*.chat-header h3 {*/
/*    margin: 0;*/
/*    font-size: 16px;*/
/*    color: #fff;*/
/*}*/

.chat-header {
    background-color: #8b0000;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid white;
}

.chat-header h3 {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

.chat-controls {
    display: flex;
    align-items: center;
}

.btn-group {
    margin-right: 16px; 
}

.close-chat {
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff; 
}


.bot ul{
   list-style-type: none;
   padding: 0;
}
.bot li{
   box-shadow: 0px 0px 5px #c5c5c5;
   margin-bottom: 6px;
   padding: 3px 5px;
   background-color: #8b0000;
   cursor: pointer;
   border-radius: 3px;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
.close-chat:hover {
    color: #fff;
}

.chat-body {
    padding: 10px;
    height: 70vh;
    overflow-y: auto;
}
.chat-body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.chat-body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.messageLeft , .messageRight {
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    color: white;
    margin-bottom: 10px;
    max-width: 80%;
    min-width: 51%;
    font-size: 14px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.messageForm, .feedbackForm{
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    color: white;
    margin-bottom: 24px;
    width:90%;
    font-size: 14px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


.bot {
    background-color: #f0f0f0;
}

.messageLeft p ,.messageRight p, .messageForm p, .messageForm label, .feedbackForm p{
    margin: 0;
    font-size: 14px;
    color:black;
}

.messageForm h6, .feedbackForm h6{
    color:black;
}


.messageLeft .time {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

.messageRight .time {
    display: block;
    text-align: left;
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

.chat-footer {
    border-top: 1px solid #ddd;
    padding: 10px;
    background-color: #f9f9f9;
}

.chat-footer input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
}
.messageLeft, .messageForm, .feedbackForm{
    float:left;

}
.messageRight{
    float:right;
    background-color: #8b0000;
}

.answer{
    color: black;
}
.helpMessage{
    color: black;
    margin-bottom: 10px;
}
.exitChat ,.needHelp{
    border: none;
    outline: none;
    border-radius: 3px;
    color: #fff;
    width: 100%;
    text-align: center;
    background-color: #8b0000;
    margin-top: 10px;
    padding: 3px;
}
.exitChat:hover ,.needHelp:hover{
    color: #fff;
}
.needHelp{
    background-color:green;
}

.tiblock {
    align-items: center;
    display: flex;
    height: 17px;
}
.ticontainer{
    background: #f0f0f0;
    height: 40px;
    width: 50px;
    border-radius: 8px 8px 8px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-bottom: 5px;
}
.messageLoader{
    display: none;
}

.ticontainer .tidot {
    background-color: #90949c;
}

.tidot {
    -webkit-animation: mercuryTypingAnimation 1.5s infinite ease-in-out;
    border-radius: 10px;
    display: inline-block;
    height: 6px;
    margin-right: 5px;
    width: 6px;
}

@-webkit-keyframes mercuryTypingAnimation{
0%{
  -webkit-transform:translateY(0px)
}
28%{
  -webkit-transform:translateY(-5px)
}
44%{
  -webkit-transform:translateY(0px)
}
}

.tidot:nth-child(1){
-webkit-animation-delay:200ms;
}
.tidot:nth-child(2){
-webkit-animation-delay:300ms;
}
.tidot:nth-child(3){
-webkit-animation-delay:400ms;
}
@media only screen and (max-width: 600px) {
  .chatbot-container {
    width: 95%;
    margin: 0 auto;
   }
   /*.chatBotBody {
    transform: translate(4px, -1%);
 }*/
}



.input-container {
    position: relative;
}

/*input[type="text"] {*/
/*    width: 100%;*/
/*    padding: 10px 40px 10px 10px; */
/*    border: 1px solid #ddd;*/
/*    border-radius: 20px;*/
/*    box-sizing: border-box;*/
/*}*/

.send-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
}

.send-button i {
    font-size: 20px;
}


.send-button i:hover{
    font-size: 24px;
}

.messageLeft .chatbotMessage{
    margin-block-end: -30px;
}

#completeChatButton, #feedbackSupport textarea{
    width:100%;
}

.messageForm input{
    height:40px;
}
.messageForm .form-group{
    margin-bottom: 0.5rem;
}

.prev-category, .clear-chat {
    border: 1px solid #8b0000;
    border-radius: 5px;
    margin-right: 10px;
    padding: 6px;
    font-size: 11px;
    outline:none;
}

.chat-buttons {
    text-align: center;
}

.prev-category:hover, .clear-chat:hover, .submitchatUserDetails:hover{
    color: #8b0000 !important;
    border: 1px solid #8b0000 !important;
}


