body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.main-container{
    display: flex;
    min-height: 100vh;
    background-color: transparent;
    width: 100%;
}
.main-container .floating-btn-sec{
    /* border-radius: 25px; */
    /* background: #7B0099; */
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* height: 54px; */
    /* width: 95px; */
    /* background-image: linear-gradient(to right, #673ab7, #813bcb, #9e38de, #bc32ef, #dc22ff); */
    /* background-image: linear-gradient(to right, #315b85, #3498db); */
    /* background-color: #cf2575; */
    z-index: 9999;
    border-radius: 30px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    /* line-height: 50px; */
    cursor: pointer;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff3269;
    color: #fff;
    padding: 9px 20px;
    background: linear-gradient(90deg, #db287b 2.1%, rgb(81, 13, 121) 88.68%);
}
.main-container .floating-btn-sec .wer-img-icon{
    height: 90px;
    width: 90px;
    position: absolute;
    right: -13px;
    top: -33px;
}
.main-container .floating-btn-sec img{
    width: 50px;
    border-radius: 50%;
}
.main-container .floating-btn-sec:hover {
    /* background: #8905aa; */
    /* background-image: linear-gradient(to right, #6b32ce, #792fc9, #8621c5, #9921c5, #cc12f1); */
    /* background-image: linear-gradient(to right, #3498db, #315b85); */
    /* background-color: #e71d7b; */
}
.main-container .gen-ai-kb-chat-box {
    background-color: #fff;
    display: flex;
    border-radius: 20px 20px 20px 20px;
    align-items: flex-start;
    /* box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 10%); */
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    width: 350px;
    height: calc(90vh - 60px);
    transition: 0.3s;
    transform: translateY(100%);
    position: fixed;
    right: 0;
    bottom: 15px;
}
.main-container .gen-ai-kb-chat-box.active-box {
    visibility: visible;
    opacity: 1;
    width: 350px;
    height: calc(90vh - 60px);
    transform: translateY(0);
    transition: 0.3s;
}
.main-container .gen-ai-kb-chat-box .gakcb-header {
    border-radius: 20px 20px 0px 0px;
    /* background: #7B0099; */
    /* background-image: linear-gradient(to right, #673ab7, #813bcb, #9e38de, #bc32ef, #dc22ff); */
    /* background-image: linear-gradient(to right, #315b85, #3498db); */
    /* background-color: #cf2575; */
    background: linear-gradient(90deg, #db287b 2.1%, rgb(81, 13, 121) 88.68%);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    row-gap: 10px;
    position: relative;
    align-items: center;
    width: calc(100% - 40px);
    column-gap: 10px;
}
.main-container .gen-ai-kb-chat-box .gakcb-header .gakcb-header-title{
    font-style: normal;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.main-container .gen-ai-kb-chat-box .gakcb-footer {
    /* background: #7B0099; */
    /* background-image: linear-gradient(to right, #673ab7, #813bcb, #9e38de, #bc32ef, #dc22ff); */
    /* background-image: linear-gradient(to right, #315b85, #3498db); */
    /* background-color: #cf2575; */
    background: linear-gradient(90deg, rgb(122, 23, 121) 2.1%, rgb(81, 13, 121) 88.68%);
    padding: 5px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
    position: relative;
    width: calc(100% - 80px);
    align-items: center;
    border-radius: 0px 0px 20px 20px;
    font-style: normal;
    color: #fff;
    font-size: 14px;
}
.main-container .gen-ai-kb-chat-box .gakcb-header .header-close {
    position: absolute;
    right: 20px;
    top: 18px;
    cursor: pointer;
    display: flex;
}
.main-container .gen-ai-kb-chat-box .gakcb-body {
    min-height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #fbfbfb;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-input-sec{
    display: none;
    width: 100%;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-input-sec .chat-input-element{
    width: 85%;
    background: #ffffff;
    padding: 15px 70px 15px 15px;
    resize: none;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #f8f8f8;
    color: #7a7a7a;
    font-weight: normal;
    font-size: 13px;
    transition:0.5s ease;
    border-radius: 5px;
    border:1px solid #efefef;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-input-sec .chat-input-element:focus{
    border-color: #cf25753d;
}
.bot-bubble-main{
    display: flex;
    column-gap: 10px;
}
.user-bubble-main{
    width: 100%;
    column-gap: 10px;
    align-items: flex-start;
    justify-content: flex-end;
    display: flex;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-input-sec .chat-input-element:focus-visible{
    outline: none;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-scroll-body{
    background: #fbfbfb;
    height: 100%;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    overflow-y: auto;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-form{
    display: flex;
    width: 100%;
    margin: 0;
    position: relative;
    background: #fff;
    padding: 7px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.02);
    box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 10%);
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-form .send-icon{
    position: absolute;
    right: 16px;
    top: 22px;
    height: 17px;
    width: 17px;
    color: #a9a9a9;
    cursor: pointer;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-input-sec .chat-input-element:focus ~ .send-icon {
    color: #3498db;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-scroll-body .btn-start-chat{
    /* background-image: linear-gradient(to right, #673ab7, #813bcb, #9e38de, #bc32ef, #dc22ff); */
    /* background-image: linear-gradient(to right, #315b85, #3498db); */
    background-color: #cf2575;
    border: none;
    padding: 0.58rem 1.25rem;
    transition: transform 0.5s ease;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    width: calc(100% - 40px);
    border-radius: 20px;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-scroll-body.active-sec{
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-scroll-body .btn-start-chat:hover{
    transform: translateY(-3px);
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-scroll-body .csb-welcome-text{
    color: #515365;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-scroll-body::-webkit-scrollbar-track
{
	background-color: #F5F5F5;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-scroll-body::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-scroll-body::-webkit-scrollbar-thumb
{
	background-color: #db287b;
}
.bbm-img-icon{
    width: 32px;
    height: 32px;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-scroll-body .chat-bubble.you{
    /* background-image: linear-gradient(to right, #315b85, #3498db); */
    /* background-color: #cf2575; */
    background-color: #ff3269;
    color: #fff;
    border-radius: 0 15px 15px 15px;
    align-self: flex-start;
    display: table;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-scroll-body .chat-bubble {
    font-size: 12px;
    padding: 10px 15px;
    box-shadow: none;
    display: inline-block;
    clear: both;
    margin-bottom: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.02);
    max-width: 80%;
}
.main-container .gen-ai-kb-chat-box .gakcb-body .chat-scroll-body .chat-bubble.me {
    color: #161515;
    border-radius: 15px 0px 15px 15px;
    float: right;
    align-self: flex-end;
    display: table;
    background: #f9f4e2;
}
.loader-sec-main{
    font-size: 12px;
    padding: 15px 15px;
    box-shadow: none;
    display: inline-block;
    min-width: 40px;
    display: flex;
    align-items: center;
    clear: both;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.02);
    max-width: 80%;
    /* background-image: linear-gradient(to right, #315b85, #3498db); */
    background-color: #ff3269;
    color: #fff;
    border-radius: 0 15px 15px 15px;
}
.dot-typing {
    position: relative;
    left: -9999px;
    width: 6px;
    height: 6px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    box-shadow: 9984px 0 0 0 #fff, 9999px 0 0 0 #fff, 10014px 0 0 0 #fff;
    animation: dot-typing 0.9s infinite linear;
  }
  .input-error{
    font-size: 12px;
    position: absolute;
    color: #ff0000;
    top: 1px;
    background: #fff;
    left: 22px;
  }
  @keyframes dot-typing {
    0% {
      box-shadow: 9984px 0 0 0 #fff, 9999px 0 0 0 #fff, 10014px 0 0 0 #fff;
    }
    16.667% {
      box-shadow: 9984px -10px 0 0 #fff, 9999px 0 0 0 #fff, 10014px 0 0 0 #fff;
    }
    33.333% {
      box-shadow: 9984px 0 0 0 #fff, 9999px 0 0 0 #fff, 10014px 0 0 0 #fff;
    }
    50% {
      box-shadow: 9984px 0 0 0 #fff, 9999px -10px 0 0 #fff, 10014px 0 0 0 #fff;
    }
    66.667% {
      box-shadow: 9984px 0 0 0 #fff, 9999px 0 0 0 #fff, 10014px 0 0 0 #fff;
    }
    83.333% {
      box-shadow: 9984px 0 0 0 #fff, 9999px 0 0 0 #fff, 10014px -10px 0 0 #fff;
    }
    100% {
      box-shadow: 9984px 0 0 0 #fff, 9999px 0 0 0 #fff, 10014px 0 0 0 #fff;
    }
  }
  