<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.chatbot-container {
    position: fixed !important;
    bottom: 30px;
    right: 20px;
    z-index: 1000 !important;
    background-color: transparent;
}

.chat-btn {
    cursor: pointer;
    background: none;
}

    .chat-btn:hover {
        scale: 1.05;
    }

.chat-popup {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 110px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    flex-direction: column;
}

.chat-header {
    /* background-color:var(--chatHeaderColor); */
    background: linear-gradient(to right, #77add3, var(--chatHeaderColor));
    color: var(--chatHeaderTextColor);
    padding: 15px 25px;
    font-weight: bold;
    font-size: var(--chatHeaderFontSize);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-btn {
    cursor: pointer;
    width: 25px;
    height: 25px;
    transition: all 0.1s ease;
}

    .close-btn:hover {
        transform: scale(1.05);
    }

.chat-body {
    padding: 10px;
    max-height: 450px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--bgColor);
}

.chat-content {
    display: flex;
    width: 100%;
    align-items: center;
}

.user-message, .bot-message, .loader-container {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.user-message {
    justify-content: flex-end;
}

    .bot-message img, .user-message img, .loader-container img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: block;
        margin-right: 5px;
    }

    .user-message img {
        margin: 0px 0px 0px 5px;
    }

    .user-message span, .bot-message span {
        border-radius: 15px;
        padding: 10px;
        max-width: 80%;
        display: block;
        position: relative;
    }

    .user-message span {
        background-color: var(--userMsgBgColor);
        color: var(--userMsgTextColor);
        font-size: var(--userMsgFontSize);
        border-bottom-right-radius: 0px;
    }

.bot-message span {
    background-color: var(--botMsgBgColor);
    color: var(--botMsgTextColor);
    font-size: var(--botMsgFontSize);
    border-top-left-radius: 0px;
    animation: popUp 0.5s forwards;
    line-height: 1.4;
    letter-spacing: unset;
}

    .bot-message span::after, .bot-message span::before {
        box-sizing: unset;
    }

@keyframes popUp {
    0% {
        transform: scale(0) translateX(-50%) translateY(50%);
        opacity: 0; /* Fully transparent */
    }

    50% {
        transform: scale(1.05) translateX(2px) translateY(-2px);
        opacity: 0.3;
    }

    100% {
        transform: scale(1) translateX(0) translateY(0);
        opacity: 1;
    }
}

.bot-message span::after, .user-message span::after {
    content: attr(data-time);
    font-size: 10px;
    color: var(--timeColor);
    position: absolute;
    bottom: -15px;
    right: 5px;
}

.chat-date {
    font-size: 14px;
    text-align: center;
    color: var(--dateColor);
    margin-bottom: 10px;
}

.options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin: 0px 35px 0px 35px;
}

.option-btn {
    font-size: 13px;
    padding: 5px 15px;
    text-align: center;
    background-color: var(--optionBgColor);
    color: var(--optionTextColor);
    border: 0.1px solid black;
    border-radius: 20px;
    cursor: pointer;
    word-wrap: break-word;
    white-space: normal;
    display: inline-block;
    max-width: 300px;
    animation: popUp 0.5s forwards;
}

    .option-btn:hover {
        background-color: var(--hoverOptBgColor);
        color: var(--hoverOptTextColor);
        border: 0.25px solid transparent;
    }

/*------------------------------For Loader-----------------------------------------*/
.loader-container {
    display: flex;
    justify-content: flex-start;
    margin: 10px 0px;
}

    .loader-container span {
        background-color: var(--botMsgBgColor);
        color: var(--botMsgTextColor);
        height: 4px;
        border-radius: 0px 15px 15px 15px;
    }

.loader {
    padding: 12px 40px;
    width: 80px;
    background: no-repeat radial-gradient(circle closest-side, #1b3faa 80%, transparent 100%) 0% 50%, no-repeat radial-gradient(circle closest-side, #0b287f 80%, transparent 100%) 50% 50%, no-repeat radial-gradient(circle closest-side, #001451 80%, transparent 100%) 100% 50%;
    background-size: 50px 50%;
    animation: l3 0.625s infinite linear;
}

@keyframes l3 {
    20% {
        background-position: 0% 0%, 50% 50%, 100% 50%;
    }

    40% {
        background-position: 0% 100%, 50% 0%, 100% 50%;
    }

    60% {
        background-position: 0% 50%, 50% 100%, 100% 0%;
    }

    80% {
        background-position: 0% 50%, 50% 50%, 100% 100%;
    }
}
/*-------------------------------Custom Scrollbar Styling-------------------------------------------- */
.chat-body::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-thumb {
    background: var(--scrollColor);
    border-radius: 3px;
}

    .chat-body::-webkit-scrollbar-thumb:hover {
        background: var(--hoverScrollColor);
    }

/*--------------------For Tooltip------------------------*/
#chat-tooltip {
    display: block;
    position: fixed;
    bottom: 75px;
    right: 55px;
    background: linear-gradient(to bottom,rgb(225, 249, 255), rgb(150, 228, 248));
    color: rgb(1, 15, 126);
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* border: 3px solid rgb(135, 231, 255); */
    border-radius: 25px;
    cursor: pointer;
    z-index: 90;
}

#tooltip-div {
    padding: 12px 40px 12px 25px;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    /* background-color: rgb(231, 239, 255); */
    background: linear-gradient(to bottom, rgb(231, 231, 231), rgb(255, 255, 255), rgb(231, 231, 231));
}

#chat-tooltip:hover {
    scale: 1.025;
}

@media (max-width:400px) {
    .chat-body {
        max-height: 350px;
    }
}

/*---------------------------------For Responsive------------------------------------*/
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 10px;
        right: 10px;
    }

    #chat-tooltip {
        bottom: 60px;
        right: 45px;
        padding: 5px;
    }

    .chat-popup {
        width: calc(100% - 25px);
        left: 50%;
        transform: translateX(-50%);
        bottom: 90px;
    }

    .chat-header {
        font-size: 1.2em;
    }

    .close-btn {
        margin-left: 20px;
    }

    .user-message span, .bot-message span {
        max-width: 90%;
    }

    .options-container {
        margin: 0px 15px 0px 25px;
    }

    .option-btn {
        max-width: 90%;
        font-size: 12px;
    }
}

/* For medium screens (tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
    .chat-popup {
        width: 50%; /* Use a percentage for tablets */
        right: 10%; /* Center the popup */
        bottom: 110px;
    }

    #chat-tooltip {
        bottom: 75px;
    }

    .chat-header {
        padding: 18px;
        font-size: 1.1em;
    }

    .close-btn {
        margin-left: 30px;
    }
}
</pre></body></html>