.chatbot button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    position: relative;
}

.chatbot p {
    margin: unset;
}

.chatbot button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.chatbot textarea:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.chatbot .send-icon-animation .none {
    display: block;
}

.chatbot .bot-response {
    border-radius: 20px;
    word-wrap: break-word;
    max-width: fit-content;
    padding: 15px 17px;
    background: #1b75bc;
    color: rgb(255, 255, 255);
    margin-top: 10px;
}

.chatbot .bot-response a {
    color: #ae519f;
}

.chatbot .message[data-user="true"] {
    display: grid;
    justify-content: flex-end;
}

.chatbot .chat {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 56px;
    height: 56px;
    background-color: #38841b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 1px 0 4px hsla(0, 0%, 9%, 0.3);
}

.chatbot .chat:hover,
.chatbot .help-button .text:hover {
    background: #924585;
    transition: 0.2s;
}

.chatbot .chat.chat-moved {
    width: 160px;
    height: 160px;
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}


.chatbot .help-button {
    position: fixed;
    bottom: 37px;
    right: 64px;
    transition: opacity 0.5s ease;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chatbot .help-button .text {
    background-color: #ae519f;
    color: white;
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    max-width: 270px;
    font-size: 20px;
    line-height: 1.4;
    margin: 16px;
}

.chatbot .help-button .exit {
    align-self: flex-end;
    border-radius: 16px;
    padding: .22rem .5rem;
    padding-left: .2rem;
    background: #e0e0e0;
    align-items: center;
    display: flex;
    font-size: 11px;
    color: #1f1f1f;
    margin-bottom: -10px;
    margin-right: 15px;
    box-shadow: 1px 0 4px hsla(0,0%,9%,.3);
}

.chatbot .captionBot.msgCaption{
    padding: 10px 15px 10px !important;
}

.chatbot .message.msgCaption{
    padding: 0px 25px 10px !important;
}

.chatbot .user-response {
    background: #6D6E71;
    color: rgb(255, 255, 255);
    line-height: 18px;
    border-radius: 12px;
    max-width: 250px;
    padding: 8px 12px;
    border-bottom-right-radius: 5px;
    white-space: normal;
    word-wrap: break-word;
}

.chatbot .message {
    padding: 0 25px 10px;
}

.chatbot .message img {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 10px;
    margin-bottom: 6px;
}

.chatbot .captionBot img {
    width: 18px;
    height: 18px;
    border-radius: 100%;
}

.chatbot .captionBot {
    display: flex;
    align-items: center;
    padding: 0 25px;
    font-size: 14px;
    color: rgb(24, 25, 25);
}

.chatbot .minimized .chat{
    display: none;
}

.chatbot a {
    text-decoration: none;
}

.chatbot .InputMSG {
    font-family: "Gill Sans",sans-serif;
    outline: none;
    border: none;
    width: 100%;
    margin-left: 15px;
    resize: none;
    font-size: 14px;
}

.chatbot .InputMSG::placeholder {
    font-size: 14px;
    color: rgb(155, 166, 178);
}

.chatbot .BoxSentMSG {
    display: flex;
    align-items: center;
    min-height: 45px;
}

.chatbot .send-icon {
    display: flex;
    background-color: white;
    width: 26px;
    height: 26px;
    margin: 0 13px;
    cursor: pointer;
}

.chatbot .ContentChat {
    border-bottom: 1px solid #e6ebea;
    width: 100%;
    height: 450px;
    overflow-y: scroll;
    overflow-x: hidden;
    overflow-anchor: none; /* Add this line to disable auto-scroll behavior */
    font-size: 14px;
    scroll-behavior: smooth;
}

.chatbot .ContentChat::before {
    content: "";
    display: block;
    height: 10px;
    width: 100%;
}

.chatbot .ContentChat::after {
    content: "";
    display: block;
    height: 10px;
    width: 100%;
}

.chatbot .AvatarBot {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.chatbot .AvatarBot span{
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    position: relative;
    transition: all .11s cubic-bezier(.2,0,.38,.9);
}

.chatbot .AvatarBot span:hover{
    background: #924585;
    transition: 0.2s;
}

.chatbot .top {
    display: flex;
    align-items: center;
    height: 40px;
    -webkit-box-shadow: 0 9.5px 12.7px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 9.5px 12.7px 0 rgba(0, 0, 0, 0.05);
    background-color: #ae519f;
}

.chatbot-container {
    position: fixed;
    bottom: 40px;
    right: 15px;
    width: 380px;
    background-color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    z-index: 2;
    transition: height 0.3s ease;
    overflow: hidden;
}

.chatbot .InputMSG:valid ~ .send-icon svg path {
    fill: #ae519f;
}

.chatbot .none {
    display: none;
}

.chatbot .loading-dots {
    text-align: center;
    z-index: 5;
}

.chatbot .controls{
    position: absolute;
    top: 0;
    right: 0;
    width: 4rem;
    height: 4rem;
    padding-top: 5px;
    transition: all .11s cubic-bezier(.2,0,.38,.9);
}

.chatbot .controls svg{
    height: 25px;
    width: 25px;
}

.chatbot .controls:hover{
    background: #924585;
    transition: 0.2s;
}

.chatbot .time-text{
    padding: 0.6rem 0.6rem;
    color: #515050;
    font-style: italic;
    font-size: 12px;
}

.chatbot .option-button{
    display: inline-flex;
    word-break: break-word;
    word-wrap: break-word;
    margin-top: 8px;
    margin-right: 8px;
    border-radius: 16px;
    border: 1px solid #ae519f;
    padding: .345rem 1rem;
    font-size: 12px;
    width: fit-content;
}

.chatbot .option-button:hover{
    border: 1px solid #F1F1F1;
    background: #F1F1F1;
    transition: 0.2s;
}

.chatbot .typing-indicator {
    display: flex;
}

.chatbot .dot {
    background-color: #ae519f;
    animation: mercuryTypingAnimation 1.5s infinite ease-in-out;
    border-radius: 3px;
    display: inline-block;
    height: 6px;
    margin: 10px 2px;
    width: 6px;
}

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

.chatbot .dot:nth-child(1) {
    animation-delay: 200ms;
}

.chatbot .dot:nth-child(2) {
    animation-delay: 300ms;
}

.chatbot .dot:nth-child(3) {
    animation-delay: 400ms;
}


.chatbot .response-iframe{
    border: 0;
    width: 100%;
    height: 100%;
}

.chatbot .black-dot{
    padding-block: 8px;
    padding-inline-start: 12px;
}

.chatbot .slide-tab{
    border-radius: 12px;
    border: 1px solid #a8a8a8;
}

.chatbot .slide-tab span{
    font-weight: 600;
}

.chatbot .slide-button,
.chatbot .submit-button{
    background-color: #ae519f;
    color: white;
    padding: calc(1rem - 3px) 60px calc(1rem - 3px) 12px;
}

.chatbot .slide-button:hover,
.chatbot .submit-button:hover{
    background: #924585;
    transition: 0.2s;
}

.chatbot .slide-tab svg{
    height: 1rem;
    position: absolute;
    right: 1rem;
    width: 1rem;
    margin-right: 4px;
    margin-top: 2px;
}

.chatbot .slide-modal {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    transition: opacity 0.4s ease;
    border-radius: 15px;
    display: flex;
    align-items: center;
}

.chatbot .modal-content {
    position:relative;
    transition: transform 0.4s ease;
    border-radius: 12px;
    background: white;
    margin:.5rem;
    box-shadow: 1px 0 4px hsla(0,0%,9%,.3);
    color: #161616;
    background-color: #f4f4f4;
    font-size: 14px;
    width: 100%;
}

.chatbot .slideshow {
    position: relative;
}

.chatbot .slide-content {
    padding: 20px;
}

.chatbot .slide-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    border-top: 1px solid white;
}

.chatbot .slide-controls svg{
    position: absolute;
    right: 1.6rem;
    margin-top: -7px;
}

.chatbot .exit-button{
    position: absolute;
    top: 0;
    right: 0;
    padding: .4rem;
    width: 2rem;
    height: 2rem;
    transition: all .11s cubic-bezier(.2,0,.38,.9);
    z-index: 2;
}

.chatbot .exit-button:hover{
    background: #F1F1F1;
    transition: 0.2s;
}

.chatbot .question-mark{
    position: absolute;
    bottom: 6rem;
    right: 16px;
}

.chatbot .question-mark button{
    width: 32px;
    height: 32px;
    border-radius: 16px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-block-size: 0;
    background-color: #ae519f;
}

.chatbot .question-mark svg{
    height: 16px;
    width: 16px;
    fill: white;
}

.chatbot .return-conversation{
    border-radius: 16px;
    position: absolute;
    left: 50%;
    bottom: 10vh;
    transform: translate(-50%,50%);
    color: white;
    background-color: #393939;
    padding: .345rem 1rem;
    padding-right: 3rem;
    justify-content: center;
    display: flex;
}

.chatbot .return-conversation svg{
    position: absolute;
    right: 0;
    margin-right: 8px;
    margin-top: 1.9px;
}

/* SUGGESTIONS MODAL */
.chatbot .suggestion-modal{
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    transition: opacity 0.4s ease;
    background: rgba(17, 17, 17,.4);
    border-radius: 10px;
}
.chatbot .suggestion-modal .content{
    flex: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: #f4f4f4;
}
.chatbot .suggestion-modal .content-top{
    display: flex;
    padding: 0 16px;
    border-bottom: 1px solid #fff;
    align-items: center;
}
.chatbot .content-top section{
    background-color: currentcolor;
    width: 24px;
    height: 24px;
    border-radius: 16px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chatbot .content-top section svg{
    fill: #f4f4f4;
    width: 12px;
    height: 12px;
}
.chatbot .content-top div{
    flex: 1;
    font-size: 16px;
    padding: 16px 12px;
    font-weight: bold;
}

.chatbot .related-content section button,
.chatbot .content-top button{
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 32px;
    height: 32px;
    min-height: unset;
}
.chatbot .content-panel{
    overflow: auto;
    flex: 1;
    padding-bottom: 16px;
}

.chatbot .suggestion-modal p,
.chatbot .suggestion-modal span{
    font-size: 12px;
    color: #525252;
}
.chatbot hr{
    margin: unset;
}
.chatbot .padding-content{
    padding: 16px 16px 0 16px;
}

.chatbot .message section,
.chatbot .related-content section{
    background-color: white;
    border-radius: 12px;
    border: 1px solid #a8a8a8;
}
.chatbot .message .suggestion-content em,
.chatbot .related-content em,
.chatbot .slide-content em{
    background-color: #efdcec;
    font-weight: 700;
}
.chatbot .message .suggestion-content p{
    -webkit-box-orient: unset;
}
.chatbot .suggestion-content p{
    padding: 16px 16px 0px;
    border-top: 1px solid rgb(224, 224, 224);
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    text-overflow: revert;
    -webkit-line-clamp: 3;
    white-space: normal;
    overflow: hidden;
}

.chatbot .suggestion-content div{
    display:flex;
    justify-content:space-between;
    padding: 8px 16px 8px 16px;
}

.chatbot .empty-content{
    border: 1px dashed #161616;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    align-items: center;
}

.chatbot .empty-content svg{
    margin-right: 16px;
    width: 24px;
    height: 24px;
}

.chatbot .empty-content div{
    flex: 1;
    font-size: 12px;
}

.chatbot .content button:hover{
    background: #E7E7E7;
    transition: 0.2s;
}

/*loader for content*/
.chatbot .content_loader {
    display: block;
    margin: 0 1rem;
    height: 40px;
    background:
            linear-gradient(90deg,#0001 33%,#0005 50%,#0001 66%) #ae519f75;
    background-size:300% 100%;
    animation: l1 1s infinite linear;
}

@keyframes l1 {
    0% {
        background-position: right;
    }
}

/*tooltips*/
.chatbot .tooltips .tooltipstext {
    width: max-content;
    visibility: hidden;
    background-color: #393939;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: .345rem 1rem;
    position: absolute;
    z-index: 1000;
    right: 130%;
    font-size: 9px;
    margin-top: 5px;
}

.chatbot .tooltips .tooltipstext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #393939;
}
.chatbot .tooltips:hover .tooltipstext {
    visibility: visible;
}

/* Forms styling */
.chatbot .poll-form{
    position: relative;
    padding: 0;
    margin-bottom: 1rem;
}

.chatbot .poll-form:first-child{
    margin-top: 1.5rem;
}

.chatbot .poll-form:last-child{
    margin-bottom: 1rem;
}

.chatbot .poll-form input {
    width: 99%;
    border: none;
    border-bottom: solid #aaaaaa 1px;
    padding-bottom: 5px;
    position: relative;
    background: none;
    z-index: 5;
    outline: none;
}

.chatbot .poll-form input::placeholder { color: #aaaaaa; }
.chatbot .poll-form input:focus { outline: none; }

.chatbot .poll-form span {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0%;
    background-color: #ae519f;
    width: 0;
    height: 2px;
    border-radius: 2px;
    transition: 0.5s;
}

.chatbot .poll-form label {
    position: absolute;
    color: #aaa;
    left: 5px;
    bottom: 8px;
    transition: all .2s;
}

/* Apply styles when the input is focused */
.chatbot .poll-form input:focus ~ label {
    font-size: 10px;
    bottom: 22px;
    color: #ae519f;
    font-weight: bold;
}

/* Apply styles when the input has content and is valid */
.chatbot .poll-form input:not(:placeholder-shown):valid ~ label {
    font-size: 10px;
    bottom: 22px;
    color: #ae519f;
    font-weight: bold;
}

/* Apply styles for span when the input is focused or has content and is valid */
.chatbot .poll-form input:focus ~ span,
.chatbot .poll-form input:not(:placeholder-shown):valid ~ span {
    width: 100%;
}

@media only screen and (max-width: 415px) {
    /* For phones: */
    .chatbot-container {
        right: 0px;
        width: 100%;
    }
}

/* Transition classes appear */
/* ---------------------------------- */
.chatbot .fade-enter-active,
.chatbot .fade-leave-active {
    transition: opacity 0.4s linear;
}

.chatbot .fade-enter-from,
.chatbot .fade-leave-to {
    opacity: 0;
}
/*TRANSITION FOR MESSAGESS INSIDE CONTAINER*/
.chatbot .message-enter-active, .message-leave-active {
    transition: opacity 0.5s;
}
.chatbot .message-enter-from, .message-leave-to {
    opacity: 0;
}
/* Slide animation */
.chatbot .slide-right-enter-active, .slide-left-leave-active {
    transition: transform 0.5s;
}
.chatbot .slide-right-enter, .slide-left-leave-to {
    transform: translateX(100%);
}
.chatbot .slide-left-enter-active, .slide-right-leave-active {
    transition: transform 0.5s;
}
.chatbot .slide-left-enter, .slide-right-leave-to {
    transform: translateX(-100%);
}
/* Slide from bottom animation */
.chatbot .slide-from-bottom-enter-active, .slide-from-bottom-leave-active {
    transition: transform 0.5s ease;
}
.chatbot .slide-from-bottom-enter-from, .slide-from-bottom-leave-to {
    transform: translateY(100%);
}
.chatbot .slide-from-top-enter-active, .slide-from-top-leave-active {
    transition: transform 0.5s;
}
.chatbot .slide-from-top-enter-from, .slide-from-top-leave-to {
    transform: translateY(110%);
}
/* Chat transition on beggining */
.chatbot .chat-transition-enter-active,
.chatbot .chat-transition-leave-active {
    transition: all 0.5s ease;
}

.chatbot .chat-transition-enter,
.chatbot .chat-transition-leave-to {
    width: 160px;
    height: 160px;
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}
.chatbot .chat-moved .WACLauncher__svg {
    margin-top: -62px;
    margin-right: 60px;
    transition: all 0.5s ease;
}