<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.chat-widget {
    position: fixed;
    border-radius: 20px;
    bottom: 80px;
    right: 0;
    width: 400px;
    height: 500px;
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 11;
}

.chat-header {
    height: 57px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #F89733;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.circle-chat-icon {
    width: 80px;
    height: 80px;
    background-color: #F89733;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 127px;
    position: absolute;
    left: -40px;
    filter: drop-shadow(2px 3px 8px rgba(18, 100, 179, 0.15));
}

.circle-chat-icon img {
    width: 80%;
    height: 80%;
}

.circle-chat-icon-header {
    background-color: #F89733;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 127px;
    position: absolute;
    left: -35px;
    filter: drop-shadow(2px 3px 8px rgba(18, 100, 179, 0.15));
}

.circle-chat-icon-header img {
    height: 52px;
    width: 52px;
}

.chat-header h3 {
    width: 100%;
    margin: 0;
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.06px;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chat-body {
    padding: 10px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.userMessageDiv {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.botMessageDiv {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.timestamp {
    color: var(--Text-Disable, #A3A3A3);
    font-family: Roboto;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.025px;
}

.chat-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 16px;
    box-shadow: 0px -1px 7px 0px rgba(0, 0, 0, 0.05);
}

.chat-footer input {
    display: flex;
    padding: 10px 14px;
    background-color: #F6F6F6;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    outline: none;
}

.chat-footer button {
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    width: 36px;
    height: 36px;
}

.open-chat {
    position: fixed;
    bottom: 100px;
    right: 20px;
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    z-index: 999;
}

.open-chat.hidden {
    display: none;
}

.chat-widget.open {
    transform: translateX(-89px);
}


/* Message styles */
.chat-body p {
    margin: 5px 0;
    padding: 8px 12px;
    max-width: 70%;
    border-left: 3px solid #F9A11B;
    background: #FFF;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.05);
}

/* User message */
.chat-body p.user {
    align-self: flex-end;
    background-color: #ffffff;
    color: #000;
    border-radius: 8px 0px 0px 8px;
    border-left: none;
    border-right: 3px solid #47A8DD;
    word-break: break-all;
}

/* Bot message */
.chat-body p.bot {
    align-self: flex-start;
    background-color: #ffffff;
    color: #000;
    border-radius: 0px 8px 8px 0px;
    border-left: 3px solid #F9A11B;
    border-right: none;
}

.indicatorDiv {
    display: flex;
    width: 60px;
    padding: 10px 10px 10px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 0px 8px 8px 0px;
    border-left: 3px solid #F9A11B;
    background: #FFF;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.05);
}


body.no-scroll {
    overflow: hidden;
}

.hidden {
    display: none;
}

.typing {
    font-style: italic;
    color: #888;
    margin-left: 5px;
}

.typing-indicatorStyle {
    width: 40px;
    height: 10px;
}



@media screen and (max-width: 600px) {
    .chat-widget {
        position: fixed;
        height: 100%;
        width: 100%;
        border-radius: 0;
        right: 0;
        top: 0;
        transform: translateX(120%);
        z-index: 999999999;
    }

    .chat-widget.open {
        transform: translateX(0%);
        border: 0;
    }

    .circle-chat-icon-header {
        left: 0;
        height: 52px;
        width: 52px;
        filter: drop-shadow(2px 3px 8px rgba(18, 101, 179, 0));
    }

    .circle-chat-icon-header img {
        height: 100%;
        width: 100%;
    }
    
    .circle-chat-icon{

    }
    .chat-footer {
        overflow: hidden;
        border-radius: none;
        padding: 16px 20px 32px 20px;
    }

    .chat-header {
        border-radius: 0;
    }
}</pre></body></html>