<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.chat-bg-dark {
    /*background: hsl(231, 50%, 50%);*/
    background: darkgrey !important;
    font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: white !important;
}

.chat-h2 {
    /*background: hsl(231, 50%, 50%);*/
    background: darkgrey !important;
    font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: white !important;
    text-transform: none !important;
}

.chat-bg-light {
    background: hsla(231, 10%, 90%, 0.8);
    position: absolute;
    bottom: 1px;
    width: 90%;
}

.chat-text-light {
    color: #f0f0f0;
}

.chat-align-center {
    text-align: center;
}

/*** NAV ***/

nav#chat-nav-container {
    background: #f0f0f0;
    padding: 15px;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    box-sizing: border-box;
}

ul.chat-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chat-nav-link {
    padding: 2px 0;
    margin: 8px 0;
    font-size: .9rem;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
}

    .chat-nav-link &gt; span {
        margin-right: 10px;
        position: absolute;
        left: 0;
    }

.chat-btn-transparent {
    border: 0;
    background: 0;
}

.chat-btn-icon {
    font-size: 1.5rem;
    width: 99%;
    cursor: pointer;
    text-align:center !important;
    align-items: center !important;
    display: contents;
}

/********************/

/*** Main chat UI ***/

/********************/

#chat-header,
#chat-form {
    display: grid;
    grid-template-columns: 50px auto 50px;
    align-items: center;
}

#header {
    padding: 6px;
}

/* Conversation */

#chat-message-board {
    display: grid;
    /*align-self: end;*/
    grid-auto-rows: minmax(min-content, max-content);
    padding: 5px 0;
    box-sizing: border-box;
    max-height: 420px;
    height: 420px;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
    resize: none;
    min-height: 200px;
    bottom: 15px;
}

    /* When the textarea gets focus, do something */
    #chat-message-board:focus {
        background-color: #ddd;
        outline: none;
    }

.chat-post {
    position: relative;
    margin: 4px 10px;
    padding: 10px;
    border-radius: 10px;
    font-size: .9rem;
    word-break: break-word;
}

.chat-post-user {
    justify-self: left;
    margin-right: 50px;
    background: rgba(255, 152, 0, 0.1);
    /*border-top-left-radius: 0;*/
}

.chat-post-bot {
    justify-self: right;
    margin-left: 20px;
    background: rgba(64, 83, 191, 0.1);
    /*border-top-right-radius: 0;*/
}

.chat-post:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 0;
}

.chat-post-user:after {
    left: -10px;
    border-right-color: rgba(255, 152, 0, 0.1);
    border-left: 0;
}

.chat-post-bot:after {
    right: -10px;
    border-left-color: rgba(64, 83, 191, 0.1);
    border-right: 0;
}

.chat-timestamp {
    font-size: .6em;
    opacity: .4;
    margin: 5px 0 -5px;
    display: block;
}

/* Chat Form */

#chat-form {
    padding: 6px;
    /*min-height: 40px;*/
    grid-template-rows: auto 1fr;
}

#chat-emoijis {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 5px;
    grid-gap: 5px;
    margin-bottom: 5px;
}

#chat-message {
    padding: 5px;
    font-size: 1rem;
    min-height: 25px;
    max-height: 25vh;
    overflow: auto;
    background: rgba(0, 0, 0, 0.05);
    /*color: rgba(0, 0, 0, 0.29);*/
    font-style: italic;
    outline: none;
    resize: none;
}

#chat-smiley {
    color:black !important;
}

#chat-form.focus {
    background: rgba(255, 152, 0, 0.1);
}

#chat-message.focus {
    background: rgba(255, 255, 255, 0.5);
}

/* Custom Scrollbar */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: hsl(231, 50%, 50%, 10%);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #b30000;
    }

/* Button used to open the chat form - fixed at the bottom of the page */
.chat-open-button {
    /*background-color: #555;*/
    /*color: white;*/
    /*padding: 16px 20px;*/
    border: none;
    cursor: pointer;
    /*opacity: 0.8;*/
    position: fixed;
    bottom: 23px;
    right: 28px;
    /*width: 280px;*/
    /*background-color: #31B0D5;*/
    background-color: #ff9933;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    border-color: #46b8da;
    font-size: small;
    font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
}

/* The popup chat - hidden by default */
.chat-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 3px solid #f1f1f1;
    z-index: 9;
}

/* Add styles to the form container */
.chat-form-container {
    font-family: Arial, sans-serif;
    font-size: 16px;
    max-width: 300px;
    padding: 10px;
    background-color: white;
    width: 600px;
    height: 500px;
}

/* Full-width textarea */
/*.form-container textarea {
                width: 100%;
                padding: 15px;
                margin: 5px 0 22px 0;
                border: none;
                background: #f1f1f1;
                resize: none;
                min-height: 200px;
            }*/

/* When the textarea gets focus, do something */
/*.form-container textarea:focus {
                    background-color: #ddd;
                    outline: none;
                }*/

/* Set a style for the submit/send button */
/*.form-container .btn {
                background-color: #04AA6D;
                color: white;
                padding: 16px 20px;
                border: none;
                cursor: pointer;
                width: 100%;
                margin-bottom: 10px;
                opacity: 0.8;
            }*/

/* Add a red background color to the cancel button */
/*.form-container .cancel {
                background-color: red;
            }*/

/* Add some hover effects to buttons */
/*.form-container .btn:hover, .open-button:hover {
                opacity: 1;
            }*/
</pre></body></html>