﻿@import 'https://fonts.googleapis.com/css?family=Noto+Sans';
/*--------------------
Mixins
--------------------*/

.bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    filter: blur(80px);
    transform: scale(1.2);
}


/*--------------------
Chat Title
--------------------*/
.chat-title {
    flex: 0 1 45px;
    position: relative;
    z-index: 2;
    /*background: rgba(0, 0, 0, 0.2);*/
    color: #fff;
    text-transform: uppercase;
    text-align: left;
    padding: 10px 10px 10px 50px;
}

.chat-title h1, .chat-title h2 {
    font-weight: normal;
    font-size: 10px;
    margin: 0;
    padding: 0;
}

.chat-title h2 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 8px;
    letter-spacing: 1px;
}

.chat-title .avatar {
    position: absolute;
    z-index: 1;
    top: 8px;
    left: 9px;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.24);
}

.chat-title .avatar img {
    width: 100%;
    height: auto;
}

/*--------------------
Messages
--------------------*/
.messages {
    flex: 1 1 auto;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.messages .messages-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 101%;
    width: 100%;
}

.messages .message {
    clear: both;
    float: left;
    padding: 6px 10px 7px;
    border-radius: 10px 10px 10px 0;
    background: rgba(0, 0, 0, 0.3);
    margin: 8px 0;
    font-size: 11px;
    line-height: 1.4;
    margin-left: 44px;
    margin-right: 10px;
    position: relative;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.messages .message .timestamp {
    position: absolute;
    bottom: -15px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
}

.messages .message .timestampTop {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
}


.messages .message::before {
    content: "";
    position: absolute;
    bottom: -6px;
    border-top: 6px solid rgba(0, 0, 0, 0.3);
    left: 0;
    border-right: 7px solid transparent;
}

.messages .message .avatar {
    position: absolute;
    z-index: 1;
    bottom: -15px;
    left: -35px;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.24);
}

.messages .message .avatar img {
    width: 100%;
    height: auto;
}

.messages .message.message-personal {
    float: right;
    color: #fff;
    /*text-align: right;*/
    background: linear-gradient(120deg, #248A52, #257287);
    border-radius: 10px 10px 0 10px;
}

.messages .message.message-personal::before {
    left: auto;
    right: 0;
    border-right: none;
    border-left: 5px solid transparent;
    border-top: 4px solid #257287;
    bottom: -4px;
}

.messages .message:last-child {
    margin-bottom: 30px;
}

.messages .message.new {
    transform: scale(0);
    transform-origin: 0 0;
    -webkit-animation: bounce 500ms linear both;
    animation: bounce 500ms linear both;
}

/*.messages .message.loading::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 2;
    margin-top: 4px;
    -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
    animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
    border: none;
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}*/

.message:hover{
    cursor: pointer;
}

.messages .message.loading span {
    display: block;
    font-size: 0;
    width: 20px;
    height: 10px;
    /*position: relative;*/
    padding: 10px;
}

/*.messages .message.loading span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 2;
    margin-top: 4px;
    -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
    animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
    margin-left: -7px;
}*/

/*.messages .message.loading span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 2;
    margin-top: 4px;
    -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
    animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
    margin-left: 7px;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}*/

/*--------------------
Message Box
--------------------*/
.message-box {
    flex-shrink: 0;
    display: flex;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    position: relative;
}

.message-box .message-input {
    background: none;
    border: none;
    outline: none !important;
    resize: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    height: 17px;
    margin: 0;
    padding-right: 20px;
    width: 265px;
}

.message-box textarea:focus:-webkit-placeholder {
    color: transparent;
}

.message-box .message-submit {
    right: 10px;
    color: #fff;
    border: none;
    background: #248A52;
    font-size: 10px;
    text-transform: uppercase;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 10px;
    outline: none !important;
    transition: background 0.2s ease;
}

.message-box .message-submit:hover {
    background: #1D7745;
}

/*--------------------
Custom Srollbar
--------------------*/
.mCSB_scrollTools {
    margin: 1px -3px 1px 0;
    opacity: 0;
}

.mCSB_inside > .mCSB_container {
    margin-right: 0px;
    padding: 0 10px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

/*--------------------
Bounce
--------------------*/
@-webkit-keyframes bounce {
    0% {
        transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    4.7% {
        transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    9.41% {
        transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    14.11% {
        transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    18.72% {
        transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    24.32% {
        transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    29.93% {
        transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    35.54% {
        transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    41.04% {
        transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    52.15% {
        transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    63.26% {
        transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    85.49% {
        transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    100% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
}

@keyframes bounce {
    0% {
        transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    4.7% {
        transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    9.41% {
        transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    14.11% {
        transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    18.72% {
        transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    24.32% {
        transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    29.93% {
        transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    35.54% {
        transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    41.04% {
        transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    52.15% {
        transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    63.26% {
        transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    85.49% {
        transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    100% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
}

@-webkit-keyframes ball {
    from {
        transform: translateY(0) scaleY(0.8);
    }

    to {
        transform: translateY(-10px);
    }
}

@keyframes ball {
    from {
        transform: translateY(0) scaleY(0.8);
    }

    to {
        transform: translateY(-10px);
    }
}
/*****************************************/
.floating-chat.expand {
    width: 300px;
    height: 80vh;
    max-height: 500px;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background: linear-gradient(135deg, #044f48, #2a7561);
    background-size: cover;
    opacity: 1;
}


/* Chat container */
.floating-chat {
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 1000;
    /*transition: all 0.5s ease-in-out;*/
    display: flex;
    align-items: flex-end;
}

.floating-chat .chat {
    position: fixed;
    width: 300px;
    height: 400px;
    background: #73727e;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.floating-chat .chat.enter {
    display: block;
    animation: bounceIn 0.5s ease-out forwards;
}

.floating-chat .chat.leave {
    animation: bounceOut 0.5s ease-out forwards;
}

/* Chat box bounce-in animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05) translateY(-10px);
    }

    70% {
        transform: scale(0.95) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Chat box bounce-out animation */
@keyframes bounceOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    20% {
        transform: scale(0.9) translateY(10px);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1) translateY(-20px);
    }

    100% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }
}

/*********************************************************************************************************/

.floating-chat :focus {
    outline: 0;
    box-shadow: 0 0 3pt 2pt rgba(14, 200, 121, 0.3);
}

.floating-chat .chat .chat-title buttons {
    background: transparent;
    border: 0;
    position: absolute;
    top: 10px; /* Align to the top */
    right: 10px; /* Align to the right */
}

.floating-chat .chat {
    display: flex;
    /*transition: all 250ms ease-out;*/
    /*transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;*/
    margin: auto;
}

.floating-chat .chat.enter {
    opacity: 1;
    border-radius: 0;
    margin: 0px;
    width: auto;
    height: auto;
}

.floating-chat .chat .chat-title button {
    flex-shrink: 0;
}

.floating-chat .chat .messages {
    padding: 10px;
    margin: 0;
    list-style: none;
    /*overflow-y: scroll;*/
    overflow-x: hidden;
    flex-grow: 1;
    border-radius: 4px;
    background: transparent;
}

.floating-chat .chat .message-box .text-box {
    border-radius: 10px;
    background: rgba(25, 147, 147, 0.2);
    min-height: 100%;
    max-height: 250px;
    width: 100%;
    margin-right: 5px;
    color: #0EC879;
    caret-color: #0EC879;
    overflow-y: auto;
    padding: 2px 5px;
}

.floating-chat .chat .message-box .text-box::-webkit-scrollbar {
    width: 5px;
}

.floating-chat .chat .message-box .text-box::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.1);
}

.floating-chat .chat .message-box .text-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.2);
}

.mCSB_inside > .mCSB_container {
    margin-right: 10px !important;
}

.buttons {
    position: absolute;
    top: 10px;
    right: 10px;
}

.floating-chat-button {
    flex-shrink: 0;
    display: inline-block;
    background-color: transparent;
    border: none;
    color: white;
    /*padding: 0px;*/
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}

.floating-chat-button:hover {
    outline: 0;
    box-shadow: 0 0 3pt 2pt rgba(14, 200, 121, 0.3);
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    z-index: 999 !important;
}
#openButton {
    /*font-size: 30px;*/
    align-content: center;
    cursor: pointer;
    z-index: 1000;
    background-color: #007bff;
    color: white;
    padding: 13px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    pointer-events: auto; /* ensure it's interactive */
    user-select: none;
}
.animate {
    animation: floating 2s infinite ease-in-out;
}

.opened {
    background-color: #0b54a2 !important;
    animation: none !important;
}
/* Floating animation for the chat button */
@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/** tables inside <div class="chat-msg">*/
.chat-msg table {
    border-collapse: collapse;
    border: 1px solid #ccc;
    background-color: rgba(25, 147, 147, 0.2);
    color: whitesmoke;
}

.chat-msg tr {
    border-bottom: solid 1px black;
}

.chat-msg td {
    border: 1px solid #ccc;
    padding: 2px;
}

.chat-msg th {
    padding: 2px;
    border: 1px solid #ccc;
    background-color: rgba(25, 147, 147, 0.8);
    
}

.chat-msg tr:nth-child(even) {
    background-color: rgba(25, 147, 147, 0.2);
}

.messages .messageButtons {
    clear: both;
    float: left;
    padding: 0px 40px 7px;
    /*margin: 8px 0;*/
    font-size: 11px;
    line-height: 1.4;
    margin-left: 44px;
    margin-right: 10px;
    position: relative;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.btn-chat {
    color: #fff;
    background-color: #877f7f; /*#00BCD4;*/
    border-color: #877f7f; /*#00BCD4;*/
    margin: 1px;
}
.btn-chat.disabled,.btn-chat:disabled {
    opacity: 0.5;
    pointer-events: none;
}
/*******************/
.messages .message.loading {
    padding-right: 50px;
}

.stop-pill {
    position: absolute;
    bottom: -20px;
    left: -35px;
    background-color: rgba(220, 53, 69, 0.95); /* fully transparent initially */
    color: #fff;
    font-size: 13px;
    padding: 2px 8px;
    width: 30px;
    border-radius: 999px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 0.3; /* barely visible by default */
    font-weight: normal;
}

.stop-pill:hover {
    background-color: #dc3545; /* red becomes visible */
    transform: scale(1.05);
    opacity: 1;
    font-weight: bold;
}

.stop-pill i {
    pointer-events: none;
}

.loader-group {
    display: flex;
    gap: 5px;
    margin-left: 10px;
    width:40px;
    height:20px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: bounce 0.45s cubic-bezier(0, 0, 0.15, 1) infinite alternate;
}

.dot1 {
    animation-delay: 0s;
}

.dot2 {
    animation-delay: 0.15s;
}

.dot3 {
    animation-delay: 0.3s;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }

    100% {
        transform: translateY(-5px);
        opacity: 1;
    }
}
/*******************/
/* Scroll-to-bottom button */
#scrollToBottomBtn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    color: var(--chat-icon-color);
    position: fixed;
    right: 10px;
    bottom: 100px;
    z-index: 999;
    cursor: pointer;
    opacity: 0.35;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

/* Hover = chat-btn style + blue accent */
#scrollToBottomBtn:hover {
    background-color: var(--chat-icon-hover-bg, rgba(0, 123, 255, 0.15));
    box-shadow: 0 0 3pt 1pt #007bffeb;
    opacity: 1;
}

/* Icon sizing */
#scrollToBottomBtn i {
    font-size: 14px;
    line-height: 1;
}

