body {
    min-height: 100vh;
    background-color: var(--brand-colors--primary-black);
}

:root {
    --dark-text: #1f2937;
    --gray-text: rgba(255, 255, 255, .75);
    --brand-colors--primary-black: #0e0f18;
    --white: white;
    --cream-blue\<deleted\|variable-da03e378\>: #f0f3f8;
    --pink\<deleted\|variable-6369cc9e\>: #ff70f1;
    --green\<deleted\|variable-ec8293c4\>: #44e1bc;
    --red\<deleted\|variable-26ead392\>: #f44c4c;
    --brand-colors--primary-blue: #2f74f9;
    --yellow\<deleted\|variable-0e9c73f3\>: #ffe182;
    --text-muted\<deleted\|variable-837e37cc\>: #fffc;
    --secondary-blue\<deleted\|variable-943b44db\>: #85adfa;
    --grayscale--gray-50: #f9fafb;
    --brand-colors--primary-green: #44e1bc;
    --midnight-blue\<deleted\|variable-2be7447a\>: #12295d;
    --grayscale--color-2: #f0f3f8;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --grayscale--gray-400: #9ca3af;
    --gray-700: #374151;
    --gray-900: #111827;
    --primary-background: var(--grayscale--gray-50);
    --grayscale--gray-100: #f3f4f6;
    --brand-colors--primary-pink: #ff70f1;
    --grayscale--gray: #767a8b;
    --grayscale--light-gray: #a1a6ba;
    --brand-colors--primary-yellow: #fde69e;
    --text-body-color: var(--gray-700);
    --brand-colors--primary-red: #ffe0fa;
}

.profile-image {
    width: 50px;
    height: 50px;
    /*border-radius: 40px;*/
}

.settings-tray {
    background: #eee;
    padding: 10px 15px;
    border-radius: 7px;
    margin-bottom: 10px;
}

    .settings-tray .no-gutters {
        padding: 0;
    }

.settings-tray--right {
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .settings-tray--right i {
        margin-top: 10px;
        font-size: 25px;
        color: grey;
        margin-left: 14px;
        transition: 0.3s;
    }

        .settings-tray--right i:hover {
            color: #74b9ff;
            cursor: pointer;
        }

.search-box {
    padding: 10px 13px;
}

    .search-box .input-wrapper {
        border-radius: 40px;
    }

        .search-box .input-wrapper i {
            color: grey;
            margin-left: 7px;
            vertical-align: middle;
        }

input {
    border: none;
    border-radius: 30px;
    width: 80%;
}

    input::placeholder {
        color: #e3e3e3;
        font-weight: 300;
        margin-left: 20px;
    }

    input:focus {
        outline: none;
    }

.friend-drawer {
    width: 100%;
    height: 50px;
    border: none;
    background: transparent;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: baseline;
    transition: 0.3s ease;
}

.friend-drawer h6 {
    margin: 0;
}

.friend-drawer--grey {
    background: #eee;
}

.friend-drawer .time {
    color: grey;
}

.friend-drawer--onhover:hover {
    background: #6fb9ff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

    .friend-drawer--onhover:hover p, .friend-drawer--onhover:hover h6, .friend-drawer--onhover:hover .time {
        color: #fff !important;
    }

hr {
    margin: auto;
    color: #9d9d9d;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.chat-box-tray {
    background: #eee;
    display: flex;
    align-items: baseline;
    padding: 10px 15px;
    align-items: center;
    margin-top: 19px;
    border-radius: 8px;
    bottom: 0;
}

    .chat-box-tray input {
        margin: 0 10px;
        padding: 6px 18px;
    }

    .chat-box-tray i {
        color: grey;
        font-size: 30px;
        vertical-align: middle;
    }

        .chat-box-tray i:last-of-type {
            margin-left: 25px;
        }

.chat-row {
    display: flex;
    margin-bottom: 10px;
}

    .chat-row.right {
        justify-content: flex-end;
        margin-right: 10px;
    }

    .chat-row.left {
        justify-content: flex-start;
    }

.chat-response,
.company-report {
    border: 1px solid var(--gray-900);
    border-radius: 5px;
    padding: 15px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

#welcomeMessage {
    padding-top: 200px;
    text-align: center;
    color: #fff;
}

/*.chat-bubble {
    padding: 10px 15px;
    border-radius: 9px;
    max-width: 90%;
    display: inline-block;
    word-wrap: break-word;
}

.chat-row.right .chat-bubble {
    background-color: #add7ff;
    border-bottom-right-radius: 0;
}

.chat-row.left .chat-bubble {
    background-color: #f1f0f0;
    border-bottom-left-radius: 0;
}

.chat-box {
    height: 60vh;
    overflow-y: auto;
    border-right: 1px solid #ddd;
    padding: 0 5px;
    list-style: none;
}

.chat-panel {
    height: 65vh;
    overflow-y: scroll;
}

.loader span {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #3498db;
    margin: 0;
}

    .loader span:nth-child(1) {
        margin-left: 10px;
        animation: bounce 1s ease-in-out infinite;
    }

    .loader span:nth-child(2) {
        animation: bounce 1s ease-in-out 0.33s infinite;
    }

    .loader span:nth-child(3) {
        animation: bounce 1s ease-in-out 0.66s infinite;
    }

@keyframes bounce {
    0%, 75%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}*/
/* ==================== Loader =========================*/
/*html {
    background-color: #222;
}*/
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
    .overlay.loaded {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
.loader-wrapper {
    position: absolute;
    width: 400px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}
.loader {
    color: #eee;
    animation: rotate 3.33334s infinite linear;
    font-size: 200%;
    height: 1.5em;
    line-height: 0;
    top: 40%;
    left: 50%;
    position: relative;
    width: 1.5em;
}

.chat-bubble {
    color: #fff;
    position: relative;
    top: 40%;
    text-align: center;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.dot {
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    height: 0.25em;
    position: absolute;
    width: 0.25em;
    vertical-align: top;
}

    .dot::after {
        content: '';
        display: inline-block;
        background-color: currentColor;
        position: absolute;
    }

.dot1 {
    left: 0;
    top: 0;
}

    .dot1::after {
        animation: scaleH 1.66667s -1.2500025s infinite both linear;
        width: 1em;
        height: 1px;
        top: 0.125em;
        left: 0.25em;
    }

.dot2 {
    bottom: 0;
    left: 0;
}

    .dot2::after {
        animation: scaleV 1.66667s -1.2500025s infinite reverse both linear;
        width: 1px;
        height: 1em;
        bottom: 0.25em;
        left: 0.125em;
    }

.dot3 {
    bottom: 0;
    right: 0;
}

    .dot3::after {
        animation: scaleH 1.66667s -1.66667s infinite reverse both linear;
        width: 1em;
        height: 1px;
        bottom: 0.125em;
        right: 0.25em;
    }

.dot4 {
    top: 0;
    right: 0;
}

    .dot4::after {
        animation: scaleV 1.66667s -0.833335s infinite both linear;
        height: 1em;
        width: 1px;
        top: 0.25em;
        right: 0.125em;
    }

@keyframes scaleV {
    from {
        transform: scale(1, 0);
        transform-origin: 0% 0%;
    }

    12% {
        transform: scale(1, 1);
        transform-origin: 0% 0%;
    }

    13% {
        transform: scale(1, 1);
        transform-origin: 0% 100%;
    }

    25% {
        transform: scale(1, 0);
        transform-origin: 0% 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0% 100%;
    }
}

@keyframes scaleH {
    from {
        transform: scale(0, 1);
        transform-origin: 0% 0%;
    }

    12% {
        transform: scale(1, 1);
        transform-origin: 0% 0%;
    }

    13% {
        transform: scale(1, 1);
        transform-origin: 100% 0%;
    }

    25% {
        transform: scale(0, 1);
        transform-origin: 100% 0%;
    }

    100% {
        transform: scale(0, 1);
        transform-origin: 100% 0%;
    }
}

@keyframes pulse {
    from {
        transform: scale(0.1);
    }

    12.5% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.1);
    }
}

 

/* ==================== User Toggle ==================== */
.user-toggle .user-toggle-btn {
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;
}
.user-toggle ul {
    left: auto !important;
    background: var(--brand-colors--primary-black);
    border: 1px solid var(--gray-700);
    width: 250px;
    color: #fff;
    right: 0;
}
    .user-toggle ul li,
    .user-toggle ul li .dropdown-item {
        color: #fff !important;
    }

        .user-toggle ul li .dropdown-item:hover {
            background: #151620;
            color: #fff !important;
        }
.user-toggle .user-short-status {
    padding: 10px;
    border-bottom: 1px solid var(--gray-700);
}
.user-toggle .user-short-status img {
    border: 2px solid var(--gray-300);
    border-radius: 50%;
}
.user-toggle .user-short-status span {
    margin-left: 10px;
    font-weight: 600;
}

.chat-control {
    border-radius: 28px;
    background-color: #303030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    margin: auto;
    margin-top: 50px;
    color: #fff;
    padding: 0 8px;
    box-shadow: 0px 4px 12px 0px #0000001a, inset 0px 0px 1px 0px #ffffff33;
}

    .chat-control .icon {
        color: #d5d5d5;
        width: 18px;
        height: 18px;
        padding: 10px
    }

    .chat-control button .icon {
        background-color: #575757;
        border-radius: 50%
    }

#chatQuery {
    background-color: transparent;
    color: #e0e0e0;
}
/*.chat-control {
    border-radius: 28px;
    background-color: #303030;
    --tw-shadow: 0px 4px 12px 0px var(--tw-shadow-color, var(--shadow-color-1, #0000001a)), inset 0px 0px 1px 0px var(--tw-shadow-color, var(--shadow-color-2, #fff3));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
--tw-inset-ring-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}

--tw-inset-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}*/
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
