:root {
    --white: #ffffff;
    --black: #000000;
    --red: #CC0026;
    --refD5: #D50128;
    --greywithOpacity: rgba(198,198,198,.2);
    --darkGreyWithOpacity: rgba(26, 26, 26, 0.2);
    --black1f: #1f1f1f;
    --greydbd: #dbdbdb;
    --whitef1: #f1f1f1; 
    --greyf5: #f5f5f5;
    --whitef9:#f9f9f9;
    --greyc3: #c3c3c3;
    --black1c: #1c1c1c;
}
body.specialbody{
    background-color: var(--whitef9);
}
.chatMain {
    display: flex;
    width: 100%;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    color: var(--black1f);
    flex-flow: wrap;
    height: 100vh;
}

.chatLeftTn {
    width: 330px;
    display: flex;
    flex-flow: wrap;
    padding: 0px 20px;
    border-right: 1px solid var(--greydbd);
    background: var(--white);
    height: 100vh;
    overflow: auto;
    box-sizing: border-box;
}

div#history-container {
    width: 330px;
    height: 100vh;
}

div#chat-container {
    margin-left: 0;
    border-radius: 0;
    background: var(--whitef9);;
    height: 100vh;
    display: flex;
    flex: 0 0 calc(100% - 330px);
    overflow: auto;
}


ul.newChatUl {
    flex: 0 0 100%;
    padding: 30px 0;
    margin: 0;
    list-style-type: none;
    padding-bottom: 350px;
}

.owlImgLeft {
    align-self: end;
    padding: 30px 0;
    position: absolute;
    background: var(--white);
    width: 300px;
    left: 0;
    height: 348px;
    box-sizing: border-box;
}

.owlImgLeft img {
    width: 280px;
    height: 282px;
}

#history-sidebar ul.newChatUl {padding-bottom: 60px;}

ul.newChatUl li a {
    height: 57px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 8px;
    background: var(--greywithOpacity);
    position: relative;
    color: var(--black1f);
    text-decoration: none;
    font-size: 16px;
}

ul.newChatUl li i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background: var(--red);
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .3s linear 0s;
}

ul.newChatUl li {
    position: relative;
    cursor: pointer;
    margin-bottom: 24px;
}

ul.newChatUl li:hover i {
    opacity: 1;
}

div#chat-history {
    border-radius: 0;
    border: 0;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 10px;
    flex-flow: wrap;
    transition: all .3s linear 0s;
    height: 100%;
}

div#initial-message {
    background: transparent;
    margin: 0;
    font-size: 16px;
    flex: 0 0 100%;
}

.sparkleImg img {
    width: 90px;
    height: 90px;
}

.sparkleImg + span {
    font-size: 24px;
    color: var(--black1f);
}

.suggestedBoxes ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    gap: 20px;
    margin: 20px 0;
}

.chatCenterBottom {
    max-width: 100%;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    left: 50%;
    width: calc(100% - 660px);
    z-index: 2;
    transform: translateX(-50%);
    background: transparent;
}
.chatCenterBottom:before {
    content: '';
    position: absolute;
    left: 0;
    width: calc(100% - 15px);
    height: 100%;
    background: var(--whitef9);;
    z-index: -1;
}

.suggestedBoxes ul li a {
    background: var(--white);
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 18px;
    cursor: pointer;
    font-size: 12px;
    border: 1px solid var(--greywithOpacity);
    border-radius: 8px;
    transition: all .3s linear 0s;
}

.suggestedBoxes ul li {
    flex: 0 0 calc(33.33% - 13.5555px);
}

.suggestedBoxes ul li span {
    max-width: 125px;
}

.suggestedBoxes ul li a:hover {
    background: var(--greywithOpacity);
}

form#chat-form {
    max-width: 46.875vw;
    background: var(--white);
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}

.inputFileTn input[type="file"] {
    display: none;
}

label.inputFileTn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 60px;
    border: 1px solid var(--greywithOpacity);
    border-right: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}  

/* apply to both the old <input> and your new <textarea> */
input#chat-input,
textarea#chat-input {
    width: 100%;
    height: auto;
    min-height: 2vw;
    max-height: 6vw;
    /*Top Right Bottom Left*/
    padding: 15px 5% 5px 8px;
    overflow-y: scroll;
    resize: none;

    background: var(--white);
    color: var(--user-text-color);

    border: 1px solid var(--darkGreyWithOpacity);
    border-radius: 7px;
    box-shadow: 0px 4px 10px rgba(0,0,0, 0.2);

    font-size: 14px;
    font-weight: 400;
    font-family: sans-serif;

    letter-spacing: normal;
    line-height: 1;
    box-sizing: border-box;
}

#chat-input:focus {
    outline: none;
}

#chat-input:disabled {
    background-color: #f3f3f3; /* Light grey to indicate it's disabled */
    color: #cccccc;
}

/* ensure it can still scroll if content overflows */
#chat-input {
    overflow: auto;
    /* hide scrollbar in Firefox */
    scrollbar-width: none;
    /* hide scrollbar in IE 10+ and Edge */
    -ms-overflow-style: none;
  }
  /* hide scrollbar in WebKit browsers */
  #chat-input::-webkit-scrollbar {
    display: none;
  }

  textarea#chat-input::placeholder {
    color: var(--greyc3);
  }

.inputSubmitTn {
    position: relative;
    padding: 0px;
    margin: 0;
    border-radius: 8px;
    flex: 0 0 100%;
    background-color: var(--whitef9);
    border: none;
    box-shadow: none;
}
  
button#sendButton {
    height: 30px;
    width: 30px;
    border: 0;
    background: var(--refD5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 46%;
    left: 96%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all .3s linear 0s;
}

.inputFileTn input[type="file"] + span {
    display: flex;
    align-items: center;
}

button#sendButton:hover {
    background: var(--black);
}

button#sendButton i {
    display: flex;
}

.suggestedBoxes ul li a i {
    background: var(--refD5);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    margin-left: auto;
    transition: all .3s linear 0s;
    opacity: 0;
}

.suggestedBoxes ul li a:hover i {
    opacity: 1;
}

i.suggestedBoxes ul li i:hover {
    background: var(--black1f);
}

.suggestedBoxes {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

div#feedback-area {
    position: static;
    margin-left: auto;
    padding: 10px 0;
    cursor: pointer;
}

.tipandFeddBack {
    display: flex;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

div#feedback-area .feedback-header span {
    color: var(--black1f);
    font-size: 10px;
    padding-right: 10px;
}

.feedback-header {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.feedback-header:hover {
    opacity: .8;
}

.threeButton {
    justify-content: space-around;
    margin-top: 0px;
    display: flex;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.threeButtonRepeater a {
    background: var(--black1f);
    color: var(--white);
    text-decoration: none;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    border: 1px solid var(--black1c);;
    transition: all .3s linear 0s;
    border-radius: 8px;
    font-size: 12px;
}
.threeButtonRepeater a:hover {
    background: var(--red);
    border-color: var(--red);
}

.threeButtonRepeater:nth-child(2) {
    margin: auto;
}
.twoButton {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    gap: 50px;                /* Space between the buttons */
    padding: 10px;             /* Padding around the container (optional) */
}

.twoButtonRepeater {
    display: flex;
    justify-content: center;
    align-items: center;
}

.twoButtonRepeater a {
    background: var(--black1f);
    color: var(--white);
    text-decoration: none;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    border: 1px solid var(--black1c);
    transition: all .3s linear 0s;
    border-radius: 8px;
    font-size: 12px;
}

.twoButtonRepeater a:hover {
    background: var(--red);
    border-color: var(--red);
}


#flex-container #history-sidebar {
    height: 100%;
    border-radius: 0;
    background: var(--white);
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
    width: 330px;
    box-sizing: border-box;
    overflow: auto;
}

h2#history-header {
    text-align: left;
}

h2#history-header {
    border: 0;
    font-size: 16px;
    color: var(--black1f);
    font-weight: 600;
    margin-bottom: 0;
    position: fixed;
    right: 20px;
    width: 300px;
    top: 0;
    padding-left: 20px;
    box-sizing: border-box;
    padding-top: 45px;
    padding-bottom: 10px;
    background: var(--white);
    z-index: 1;
}

#history-sidebar div#feedback-area {
    position: fixed;
    width: 300px;
    padding: 30px 0 30px;
    right: 20px;
    border-top: 1px solid var(--greywithOpacity);
    bottom: 0;
    background: var(--white);
    height: 118px;
    box-sizing: border-box;
}

#history-sidebar div#feedback-area:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#history-sidebar div#feedback-area .feedback-header {
    height: 57px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 8px;
    background: rgba(198, 198, 198, .2);
    position: relative;
    color: var(--black1f);
    text-decoration: none;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    transition: all .3s linear 0s;
}
#history-sidebar div#feedback-area .feedback-header>span{
    font-size: 16px;
}
#history-sidebar div#feedback-area .feedback-header >i {
    margin-left: auto;
    display: flex;
    background: var(--refD5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--white);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s linear 0s;
}

#history-sidebar div#feedback-area .feedback-header >i img {
    filter: grayscale(100%) invert(100%) brightness(100%);
    box-shadow: none;
    width: 16px;
    height: 17px;
}

#history-sidebar div#feedback-area .feedback-header >i:hover {
    background: var(--black1f);
}


div#chatArea {
    flex: 0 0 100%;
    transition: all .3s linear 0s;
}

div#chat-history.chatCenterTopChatStarted {
    padding-top: 20px;
    flex-grow: inherit;
}

.chatCenterTopChatStarted div#chatArea {
    padding-top: 30px;
    /* padding-bottom: 220px; */
    margin-bottom: 220px;
}

.chatCenterTopChatStarted .sparkleImg {
    display: none;
}

.user-message {
    margin: 5px 0;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 16px;
    background: var(--whitef1);;
}

.bot-message {
    margin: 5px 0;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 16px;
    background: var(--white);
    font-weight: normal;
    color: var(--black);
    border: 1px solid var(--greywithOpacity);
}

/* Modal Css */
div#feedback-modal .modal-content {
    max-width: 650px;
    border-radius: 22px;
    border: 1px solid rgba(198,198,198,.2);
    position: relative;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px 30px 100px;
    height: auto;
}

button#close {
    background: var(--red);
    color: var(--white);
    border-radius: 30px;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    border: 1px solid var(--red);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s linear 0s;
    top: 20px;
}

button#close span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 0;
}

button#close:hover {
    background: var(--black);
    border-color: var(--black);
}

#feedback-modal h2 {
    margin-top: 30px;
    font-weight: 700;
    font-size: 30px;
    line-height: 24px;
    color: var(--black1f);
    text-align: center;
    font-family: 'Poppins';
    margin-bottom: 80px;
}
#feedback-modal label {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: var(--black1f);
    padding-bottom: 14px;
}

textarea#feedback-text {
    height: 300px;
    border: 1px solid var(--greywithOpacity);
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    font-size:14px;
    font-family: 'Poppins';
    font-weight: 400;
    letter-spacing: .2px;
    margin-bottom: 0;
    width: 100%;
}
textarea#feedback-text::placeholder{
    color: var(--greyc3);;
    font-size: 14px;
    font-weight: 400;
}

button#submit-feedback {
    border: 0;
    position: absolute;
    width: 213px;
    height: 65px;
    background: var(--black1c);
    border-radius: 15px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    bottom: -32.5px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    cursor: pointer;
    transition: all .3s linear 0s;
}
button#submit-feedback:hover {
    background: var(--red);
}

body.specialbody {
    font-family: 'Poppins';
}

.inputFileTn input[type="file"] + span img {
    width: 24px;
    height: 24px;
}

ul.newChatUl li i img {
    width: 17px;
    height: 17px;
}

#history-sidebar ul.newChatUl li i img {
    width: 20px;
    height: 18px;
}

.feedback-header img {
    width: 14px;
    height: 15px;
}

button#sendButton i img {
    width: 16px;
    height: 16px;
}

.suggestedBoxes ul li a i img {
    width: 16px;
    height: 16px;
}

div#loadingIndicator {
    background: transparent;
    color: var(--black1f);
    font-size: 22px;
}
/* Login Start */
.authForms {
    font-family: 'Poppins';
    color: var(--black1f);
}
.authForms h1 {
    font-size: 28px;
    line-height: 1.2;
    /* text-transform: capitalize; */
    color: var(--black1f);
}
.container.containerTn {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background-color: #ffffff;
    padding: 40px;
    width: 90%;
    max-width: 550px;
    position: relative;
}
.authForms form{
    margin-bottom: 20px;
}
.authForms .form-group label {
    color: var(--black1f);
    font-size: 16px;
    margin-bottom: 10px;
}
.authForms .form-group input,.authForms .form-group select,.authForms .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--greywithOpacity);
    border-radius: 8px;
    margin: 0px 0px 15px;
    background: var(--white);
    height: 57px;
    font-size: 16px;
    color: var(--black1f);
}
.authForms button[type="submit"] {
    position: absolute;
    bottom: 0;
    width: auto;
    margin: 0;
    padding: 0 30px;
    border-radius: 8px;
    height: 42px;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .4px;
    transition: all .3s linear 0s;
}
.authForms .toggle a {
    color: var(--refD5);
    font-size: 16px;
    transition: all .3s linear 0s;
}
.authForms .toggle {
    margin-top: -10px;
}
.authForms button[type="submit"]:hover {
    background: var(--black);
    border-color: var(--black);
}
.authForms .toggle a:hover {color: var(--blackf1);}
/* Mobile menu */
.mobileMenu {
    display: none;
}
.menuCloseMobile{
    display: none;
}
/* Login End */
/* Register Button Start */
div#login-register-link {
    bottom: 0;
    height: 60px;
    padding: 0;
    display: flex;
    top: auto;
    right: auto;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    width: 17.188vw;
    left: 0;
}
div#login-register-link a {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    border: 0;
    background: var(--black1f);
    color: var(--white);
    font-family: 'Poppins';
    font-size: 16px;
    transition: all .3s linear 0s;
}
#login-register-link a:hover {
    color: var(--white);
    background: var(--red);
}
/* Register Button End */
/* Back To Chat Button Start */
.backToChatButton {
    position: fixed;
    left: 0;
    top: 10vh;
}
a.btn {
    padding: 0px 30px;
    background: var(--black1f);
    color: var(--white);
    text-decoration: none;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    font-weight: 600;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
a.btn:hover {
    background: var(--red);
}
#chat-history {
    overflow-y: auto;
    /* scroll-behavior: smooth; */
}
span.feedBackMsg {
    position: fixed;
    top: 30px;
    right: -100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.4);
    padding: 10px 20px;
    font-size: 12px;
    color: green;
    text-transform: capitalize;
    border-radius: 4px;
    letter-spacing: .05px   ;
    font-family: Poppins;
    transition: all .3s linear 0s;
}
span.feedBackMsg.activeMsg{
    right:0;
}
/* Back to chat Button end */
/* Responsive */
@media(min-width:991px){
    .chatMain {
        font-size: 0.833vw;
    }
    
    .chatLeftTn {
        width: 17.188vw;
        padding: 0vw 1.042vw;
        border-right: 0.052vw solid var(--greydbd);
    }
    
    div#history-container {
        width: 17.188vw;
    }
    
    div#chat-container {
        flex: 0 0 calc(100% - 17.188vw);
    }
    
    
    ul.newChatUl {
        padding: 1.563vw 0;
        padding-bottom: 18.229vw;
    }
    
    .owlImgLeft {
        padding: 0vw 0 1.563vw;
        width: 16.188vw;
        height: 18.125vw;
        display: flex;
        justify-content: center;
    }
    
    .owlImgLeft img {
        width: 14.583vw;
        height: 14.688vw;
    }
    
    #history-sidebar ul.newChatUl {padding-bottom: 3.125vw;}
    
    ul.newChatUl li a {
        height: 2.969vw;
        padding: 0 1.042vw;
        border-radius: 0.417vw;
        font-size: 0.833vw;
        padding-right: 1.842vw;
    }
    
    ul.newChatUl li i {
        right: 1.042vw;
        width: 1.563vw;
        height: 1.563vw;
        border-radius: 1.563vw;
    }
    
    ul.newChatUl li {
        margin-bottom: 1.25vw;
    }
    
    div#chat-history {
        padding: 0.521vw;
    }
    
    div#initial-message {
        font-size: 0.833vw;
    }
    
    .sparkleImg img {
        width: 4.688vw;
        height: 4.688vw;
    }
    
    .sparkleImg + span {
        font-size: 1.25vw;
    }
    
    .suggestedBoxes ul {
        gap: 1.042vw;
        margin: 1.042vw 0;
    }
    
    .chatCenterBottom {
        width: calc(100% - 34.375vw);
    }
    .chatCenterBottom:before {
        width: calc(100% - 0.781vw);
    }
    
    .suggestedBoxes ul li a {
        height: 2.969vw;
        padding: 0 0.938vw;
        font-size: 0.625vw;
        border: 0.052vw solid var(--greywithOpacity);
        border-radius: 0.417vw;
    }
    
    .suggestedBoxes ul li {
        flex: 0 0 calc(33.33% - 0.706vw);
    }
    
    .suggestedBoxes ul li span {
        max-width: 6.51vw;
    }
    
    label.inputFileTn {
        flex: 0 0 3.125vw;
        border: 0.052vw solid var(--greywithOpacity);
        border-top-left-radius: 0.417vw;
        border-bottom-left-radius: 0.417vw;
        border-right: 0;
    }
    
    button#sendButton {
        width: 1.563vw;
        height: 1.563vw;
        right: 1.042vw;
    }
    
    .suggestedBoxes ul li a i {
        width: 1.563vw;
        height: 1.563vw;
        border-radius: 1.563vw;
    }
    .suggestedBoxes {
        max-width: 46.875vw;
    }
    
    div#feedback-area {
        padding: 0.521vw 0;
    }
    
    .tipandFeddBack {
        max-width: 46.875vw;
    }
    
    div#feedback-area .feedback-header span {
        font-size: 0.521vw;
        padding-right: 0.521vw;
    }
    
    .threeButton {
        margin-bottom: 3.125vw;
        max-width: 46.875vw;
    }
    
    .threeButtonRepeater a {
        height: 2.083vw;
        padding: 0 1.563vw;
        border: 0.052vw solid var(--black1c);;
        border-radius: 0.417vw;
        font-size: 0.625vw;
    }
    
    #flex-container #history-sidebar {
        padding: 3.125vw 1.042vw;
        width: 17.188vw;
    }
    
    h2#history-header {
        font-size: 0.833vw;
        right: 1.042vw;
        width: 15.625vw;
        padding-left: 1.042vw;
        padding-top: 2.344vw;
        padding-bottom: 0.521vw;
    }
    
    #history-sidebar div#feedback-area {
        width: 15.625vw;
        padding: 1.563vw 0 1.563vw;
        right: 1.042vw;
        border-top: 0.052vw solid var(--greywithOpacity);
        height: 6.146vw;
    }
    
    #history-sidebar div#feedback-area .feedback-header {
        height: 2.969vw;
        padding: 0 1.042vw;
        border-radius: 0.417vw;
        width: calc(100% - 2.083vw);
    }
    #history-sidebar div#feedback-area .feedback-header>span{
        font-size: 0.833vw;
        font-weight: 500;
    }
    #history-sidebar div#feedback-area .feedback-header >i {
        width: 1.563vw;
        height: 1.563vw;
    }
    
    #history-sidebar div#feedback-area .feedback-header >i img {
        width: 0.833vw;
        height: 0.885vw;
    }    
     
    div#chat-history.chatCenterTopChatStarted {
        padding-top: 1.042vw;
    }
    
    .chatCenterTopChatStarted div#chatArea {
        padding-top: 1.563vw;
        /* padding-bottom: 11.458vw; */
        margin-bottom: 0;
    }
    div#chat-container{
        height: calc(100vh - 11vw);
    }

    .user-message {
        margin: 0.26vw 0;
        padding: 0.521vw 0.625vw;
        border-radius: 0.521vw;
        font-size: 0.833vw;
    }
    
    .bot-message {
        margin: 0.26vw 0;
        padding: 0.521vw 0.625vw;
        border-radius: 0.521vw;
        font-size: 0.833vw;
        border: 0.052vw solid var(--greywithOpacity);
    }
        
    /* Modal Css */
    div#feedback-modal .modal-content {
        max-width: 33.854vw;
        border-radius: 1.146vw;
        border: 0.052vw solid rgba(198,198,198,.2);
        padding: 1.563vw 1.563vw 5.208vw;
    }
    
    button#close {
        border-radius: 1.563vw;
        width: 1.563vw;
        height: 1.563vw;
        right: 1.042vw;
        border: 0.052vw solid var(--red);
        font-size: 0.833vw;
        top: 1.042vw;
    }
    
    button#close span {
        font-size: 0.833vw;
    }
        
    #feedback-modal h2 {
        margin-top: 1.563vw;
        font-size: 1.563vw;
        line-height: 1.25vw;
        margin-bottom: 4.167vw;
    }
    #feedback-modal label {
        font-size: 0.938vw;
        line-height: 1.25vw;
        padding-bottom: 0.729vw;
    }
    
    textarea#feedback-text {
        height: 15.625vw;
        border: 0.052vw solid var(--greywithOpacity);
        border-radius: 0.417vw;
        padding: 1.042vw;
        font-size:0.729vw;
        letter-spacing: 0.01vw;
        resize: none;
    }
    textarea#feedback-text::placeholder{
        font-size: 0.729vw;
    }
    
    button#submit-feedback {
        width: 11.094vw;
        height: 3.385vw;
        border-radius: 0.781vw;
        font-size: 0.833vw;
        bottom: -1.693vw;
    }
    
    .inputFileTn input[type="file"] + span img {
        width: 1.25vw;
        height: 1.25vw;
    }
    
    ul.newChatUl li i img {
        width: 0.885vw;
        height: 0.885vw;
    }
    
    #history-sidebar ul.newChatUl li i img {
        width: 1.042vw;
        height: 0.938vw;
    }
    
    .feedback-header img {
        width: 0.729vw;
        height: 0.781vw;
    }
    
    button#sendButton i img {
        width: 0.833vw;
        height: 0.833vw;
    }
    
    .suggestedBoxes ul li a i img {
        width: 0.833vw;
        height: 0.833vw;
    }
    
    div#loadingIndicator {
        font-size: 1.146vw;
    }   
    /* Login Start */
    .authForms h1 {
        font-size: 2vw;
        margin-bottom: 3vw;
    }
    .container.containerTn {
        box-shadow: 0 0.208vw 0.417vw rgba(0, 0, 0, 0.1);
        border-radius: 1.042vw;
        padding: 2.083vw;
        max-width: 28.646vw;
    }
    .authForms form{
        margin-bottom: 1.042vw;
    }
    .authForms .form-group label {
        font-size: 0.833vw;
        margin-bottom: 0.521vw;
    }
    .authForms .form-group input,.authForms .form-group select,.authForms .form-group textarea {
        padding: 0.521vw;
        border: 0.052vw solid var(--greywithOpacity);
        border-radius: 0.417vw;
        margin: 0vw 0vw 0.781vw;
        height: 2.969vw;
        font-size: 0.833vw;
    }
    .authForms button[type="submit"] {
        padding: 0 1.563vw;
        border-radius: 0.417vw;
        height: 2.188vw;
        bottom: -1.094vw;
        font-size: 0.729vw;
        letter-spacing: 0.021vw;
    }
    .authForms .toggle a {
        font-size: 0.833vw;
    }
    .authForms .toggle {
        margin-top: -0.521vw;
    }
    /* Login End */      
    div#login-register-link {
        height: 3.125vw;
        font-size: 0.833vw;
    }
    div#login-register-link a {
        height: 3.125vw;
        font-size: 0.833vw;
    }
    /* Back To Chat Button Start */
    a.btn {
        padding: 0vw 1.563vw;
        height: 3.125vw;
        font-size: 0.99vw;
        border-top-right-radius: 0.417vw;
        border-bottom-right-radius: 0.417vw;
    }
    span.feedBackMsg {
        position: fixed;
        top: 30px;
        right: -50vw;
        z-index: 100;
        background: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,.4);
        padding: 1vw 2vw;
        font-size: 1vw;
        color: green;
        text-transform: capitalize;
        border-radius: .2vw;
        letter-spacing: .05vw;
        font-family: Poppins;
        transition: all .3s linear 0s;
    }
}
/* Max 990 */
@media(max-width:990px){
    div#chat-container {
        flex: 0 0 100%;
    }
    .chatCenterBottom {
        width: 100%;
    }
    .suggestedBoxes {
        max-width: 100%;
        width: calc(100% - 20px);
    }
    .suggestedBoxes ul {
        gap: 5px;
        justify-content: center;
        width: 100%;
    }
    .suggestedBoxes ul li a {
        padding: 10px 5px;
        font-size: 8px;
        line-height: 1.4;
        height: auto;
    }
    .suggestedBoxes ul li span {
        max-width: calc(100% - 25px);
        width: 100%;
    }
    .suggestedBoxes ul li a i {
        opacity: 1;
        width: 20px;
        height: 20px;
        border-radius: 20px;
    }
    .suggestedBoxes ul li a i img {
        width: 12px;
        height: auto;
    }
    .tipandFeddBack {
        max-width: calc(100% - 20px);
    }
    .threeButton {
        max-width: calc(100% - 20px);
    }
    .threeButtonRepeater a {
        padding: 10px 10px;
        font-size: 10px;
        height: auto;
    }
    .sparkleImg + span {
        font-size: 18px;
    }
    .user-message {
        font-size: 12px;
    }
    .bot-message {
        font-size: 12px;
    }
    label.inputFileTn {
        flex: 0 0 40px;
    }

    button#sendButton {
        width: 20px;
        height: 20px;
        right: 10px;
    }
    button#sendButton i img {
        width: 12px;
        height: 12px;
    }
    .chatCenterTopChatStarted div#chatArea {
        /* padding-bottom: 190px; */
        margin-bottom: 190px;
        padding-top: 20px;
    }
    div#chat-history.chatCenterTopChatStarted {
        padding-top: 40px;
    }
    .mobileMenu {
        position: fixed;
        top: 0;
        left: 50%;
        max-width: calc(100% - 20px);
        transform: translateX(-50%);
        width: 100%;
        display: block;
    }
    .mobileMenu ul {
        padding: 0;
        display: flex;
        list-style-type: none;
        justify-content: flex-start;
        width: 100%;
        margin: 10px 0 0;
    }
    .mobileMenu ul li img {
        width: 30px;
        cursor: pointer;
    }
    .mobileMenu ul li:nth-child(2) {
        margin-left: auto;
    }
    .suggestedBoxes ul li{
        flex:0 0 33.333%;
    }
    /* Left Menu Start */
    .chatLeftTn {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 240px;
        z-index: 3;
        padding: 0 15px;
        transition: all .3s linear 0s;
        left: -240px;
        display: block;
    }
    ul.newChatUl {
        padding: 20px 0 200px;
    }
    .owlImgLeft img {
        width: auto;
        height: 150px;
    }
    .owlImgLeft {
        width: 230px;
        padding: 20px 0;
        height: 200px;
        text-align: center;
        position: fixed;
        bottom: 0;
        left: -240px;
        transition: all .3s linear 0s;
    }
    ul.newChatUl li a {
        height: auto;
        padding: 10px  15px;
        font-size: 12px;
        padding-right: 22px;
    }
    ul.newChatUl li i img {
        width: 12px;
        height: auto;
    }
    ul.newChatUl li i {
        opacity: 1;
        width: 20px;
        height: 20px;
        right: 15px;
    }
    ul.newChatUl li {
        margin-bottom: 12px;
    }
    .menuCloseMobile {
        background: var(--red);
        color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 30px;
        margin-top: 10px;
        text-align: center;
        position: relative;
        cursor: pointer;
        font-family: 'Poppins';
        margin-left: auto;
        line-height: 0;
    }
    .menuCloseMobile span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .chatLeftTn.leftactive {
        left: 0;
        box-shadow: 0 0 100px;
    }
    .chatLeftTn.leftactive > .menuCloseMobile {
        display: block;
    }
    .chatLeftTn.leftactive .owlImgLeft {
        left: 0;
    }
    /* Left Menu End */
    /* History Tab Start*/
    div#history-container {
        display: block;
        position: fixed;
        top: 0;
        width: 100%;
        max-width: 240px;
        z-index: 3;
        padding: 0 0px;
        transition: all .3s linear 0s;
        border-radius: 0;
        background: #fff;
        box-sizing: border-box;
        right: -240px;
    }
    body.specialbody div#flex-container div#history-sidebar {
        width: 240px;
        border: 0;
        right: auto;
        left: 0;
        padding: 0 15px;
        overflow-x: hidden;
    }
    h2#history-header {
        position: static;
        padding-left: 0;
    }
    #history-sidebar ul.newChatUl li i img {
        width: 13px;
        height: auto;
    }
    #history-sidebar div#feedback-area {
        width: 230px;
        height: 100px;
        padding: 20px 0;
        right: -240px;
        transition: all .3s linear 0s;
    }
    #history-sidebar div#feedback-area .feedback-header {
        width: calc(100% - 30px);
        padding: 10px 15px;
        height: auto;
    }
    #history-sidebar div#feedback-area .feedback-header>span {
        font-size: 13px;
    }
    #history-sidebar div#feedback-area .feedback-header >i {
        width: 20px;
        height: 20px;
    }
    #history-sidebar div#feedback-area .feedback-header >i img {
        width: 10px;
        height: auto;
    }    
    div#history-container.historyactive {
        right: 0;
        box-shadow: 0 0 100px;
    }
    div#history-container.historyactive .menuCloseMobile {
        display: block;
        margin-right: 15px;
    }
    div#history-container h2#history-header {
        padding-top: 10px;
    }
    div#history-container.historyactive #history-sidebar div#feedback-area {
        right: 10px;
    }
    /* History Tab End */
    /* Feedback Modal Start */
    div#feedback-modal .modal-content {
        width: 90%;
        box-sizing: border-box;
        padding: 30px 15px 60px;
    }
    #feedback-modal h2 {
        font-size: 28px;
        line-height: 1.3;
        text-transform: capitalize;
        margin-bottom: 30px;
    }
    #feedback-modal label {
        font-size: 14px;
        padding-bottom: 8px;
    }
    textarea#feedback-text {
        height: 170px;
        padding: 10px 15px;
        font-size: 14px;
    }
    textarea#feedback-text::placeholder{
        font-size: 14px;
    }
    button#submit-feedback {
        width: auto;
        font-size: 14px;
        padding: 0 40px;
        height: 50px;
        bottom: -25px;
    }
    button#close {
        top: 10px;
        right: 10px;
    }
    /* Feedback Modal End */
    /* Sign Up Page Start */
    .container.containerTn {
        padding: 20px;
    }
    .authForms h1 {
        font-size: 24px;
    }
    .authForms .form-group input, .authForms .form-group select, .authForms .form-group textarea {
        height: 44px;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .authForms .form-group label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .authForms .toggle a {
        font-size: 14px;
    }
    /* Sign Up Page End */
    /* Sign and Login Button Start */
    div#login-register-link {
        width: 240px;
        height: 40px;
    }
    div#login-register-link a {
        height: 100%;
        padding: 0 !important;
        font-size: 12px;
    }
    .owlImgLeft {
        padding-top: 0;
    }
    /* Sign and Login Button End */
    /* Back to Chat Start */
    .backToChatButton {
        top: 20px;
        z-index: 1;
    }
    .backToChatButton a.btn {
        height: 40px;
        font-size: 12px;
    }    
    /* Back To Chat End */
}