﻿
/*Chatbox*/
.fluent-chat {
    width: 330px;
    height: 450px;
    position: fixed;
    right: 85px;
    bottom: -458px;
    font-size: 12px;
    line-height: 22px;
    font-family: 'Roboto';
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    box-shadow: 1px 1px 100px 2px rgba(0, 0, 0, 0.22);
    border-radius: 10px;
    /*-webkit-transition: all .2s ease-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;*/
    background-color: var(--base-bg);
    display: flex;
    flex-direction: column;
    z-index: 999;
}

@media (max-width: 768px) {
    .fluent-chat {
        right: 0px;
        width: 100%;
        bottom: -415px;
    }

        .fluent-chat:not(.is-visible) .fluent-chat-header {
            height: 35px;
            border-radius: 0px
        }

    #chat-right-sidebar {
        display: none;
    }
}

.fluent-chat.is-visible {
    /*-webkit-animation: zoomIn .2s cubic-bezier(.42, 0, .58, 1);
        animation: zoomIn .2s cubic-bezier(.42, 0, .58, 1);*/
    bottom: 0px;
}

    .fluent-chat.is-visible.chat-right-sidebar {
        position: relative;
        right: 0px;
        bottom: 0px;
        top: 0px;
        height: 100%;
        background-color: white;
        box-shadow: none;
        border-radius: 0px;
    }

        .fluent-chat.is-visible.chat-right-sidebar .fluent-chat-header {
            border-radius: 0px;
        }

    .fluent-chat.is-visible.chat-full-screen {
        position: relative;
        right: 0px;
        bottom: 0px;
        top: 0px;
        height: 100%;
        background-color: white;
        box-shadow: none;
        border-radius: 0px;
        width: 100%;
    }

        .fluent-chat.is-visible.chat-full-screen .fluent-chat-header {
            border-radius: 0px;
        }

.fluent-chat.chat-modal-shown {
    position: absolute !important;
    right: 0px !important;
    /* bottom: 60px; */
    padding-top: 60px !important;
    /* top: 0px; */
    height: 100% !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0px;
    width: 100% !important;
}

    .fluent-chat.chat-modal-shown .fluent-chat-header {
        display: none;
    }

    .fluent-chat.chat-modal-shown .fluent-chat-body {
        background-color: transparent !important
    }

        .fluent-chat.chat-modal-shown .fluent-chat-body iframe {
            background-color: transparent !important
        }

.fluent-chat-header {
    /* margin: 10px; */
    font-size: 13px;
    font-family: 'Roboto';
    font-weight: 500;
    color: var(--base-text-color-with-bg-theme-color);
    height: 32px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    background: var(--base-theme-color-transparent-70);
}

.fluent-chat-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}


.fluent-chat-header-title {
    flex: 1;
    color: #f3f3f3;
}


    .fluent-chat-header-title:hover {
        color: #f3f3f3;
    }

.fluent-chat-header-btn {
    cursor: pointer;
    font-size: 20px;
    margin-left: auto;
    background-color: transparent;
    border: none;
    outline: none !important;
   color: var(--base-text-color-with-bg-theme-color);
}



.fluent-chat-body {
    background-color: #fff;
    width: 100%;
    flex: 1;
}

/*Chatbox scrollbar*/

.fluent-chat::-webkit-scrollbar {
    width: 6px;
}

.fluent-chat::-webkit-scrollbar-track {
    border-radius: 0;
}

.fluent-chat::-webkit-scrollbar-thumb {
    margin: 2px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.red-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px; /* Možete prilagoditi veličinu */
    height: 8px; /* Možete prilagoditi veličinu */
    background-color: red;
    border-radius: 50%;
}

.fluent-chat-splash-screen {
    background-color: var(--base-theme-color-transparent-60);
    color: var(--base-text-color-with-bg-theme-color);
}

    .fluent-chat-splash-screen i.ic-fluent {
        font-size: 70px;
        animation: pulsing 1s ease-in-out infinite;
    }

    .fluent-chat-splash-screen .dot {
        display: inline-block;
        opacity: 0;
    }

    .fluent-chat-splash-screen .dot1 {
        animation: dot1 1.51s infinite;
    }

    .fluent-chat-splash-screen .dot2 {
        animation: dot2 1.5s infinite;
    }

    .fluent-chat-splash-screen .dot3 {
        animation: dot3 1.5s infinite;
    }
/*Animation*/
@-webkit-keyframes zoomIn {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.0;
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes load {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.0;
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulsing {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes dot1 {
    0%, 20%, 100% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }
}

@keyframes dot2 {
    0%, 30%, 100% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }
}

@keyframes dot3 {
    0%, 40%, 100% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }
}
body {
}
