:root {
    --font-default: 'Manrope';
    --background: rgb(255, 255, 255);
    --text-body-color: #5f5f5f;
    --chat-sidebar-bg: #100830;
    --chat-header-bg: rgb(255, 255, 255);
    --border-color: #cdcdcd;
    --btn-background: #0a0a0a;
    --btn-text-color: #fff;
    --chat-text-color: #1e1e1e;
    --chat-text-heading-color: #000;
    --header-height: 50px;
}

* {
    font-family: var(--font-default);
}

h1, h2, h3, h4, h5, h6 {
    line-height: normal;
    margin: 0px;
    font-weight: 700;
}

h1 {
    font-size: 28px;
} 

h2 {
    font-size: 24px;
} 

h3 {
    font-size: 20px;
} 

h4 {
    font-size: 14px;
}

h5 {
    font-size: 12px;
}

h6 {
    font-size: 10px;
}

p, span, div, label {
    line-height: normal;
    margin: 0px;
    font-size: 14px;
}

body {
    background-color: var(--background);
    color: var(--chat-text-color)
}

.container-fluid {
    padding: 0px 0px !important;
}

.vx-chat-wrapper {
    display: flex;
    height: 100vh;
    flex-direction: column;
}

.vx-section-wrapper {
    max-width: 850px;
    margin: auto;
}

.vx-chat-wrapper .vx-sidebar {
    height: 100%;
    width: 300px;
    background-color: var(--chat-sidebar-bg);
    border-right: 1px solid var(--border-color);
}

.vx-chat-wrapper .vx-header {
    display: flex;
    flex-direction: row;
    background-color: var(--chat-header-bg);
    padding: 5px 15px;
    width: 100%;
    align-items: center;
    height: var(--header-height);
}

.vx-chat-wrapper .vx-header .vx-header-first {
    flex-grow: 1;
}

.vx-chat-wrapper .vx-header .vx-header-middle {
    flex-grow: 1;
}

.vx-chat-wrapper .vx-header .vx-header-end {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.vx-chat-wrapper .vx-header .vx-header-logo-wrapper {
    display: flex;
    gap: 0px;
    flex-direction: column;
}

.vx-chat-wrapper .vx-header .vx-header-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--chat-text-heading-color);
}

.vx-chat-wrapper .vx-header .bot-by {
    font-size: 14px;
    font-weight: 500;
    margin-top: -5px;
}

.vx-chat-wrapper .vx-header .vx-header-user-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.vx-chat-wrapper .vx-header .vx-header-user-name {
    font-weight: 700;
}

.vx-chat-wrapper .vx-header .vx-header-user-icon {
    font-size: 30px;
    padding: 10px;
}

.vx-chat-wrapper .vx-sidebar-content {
    height: calc(100% - var(--header-height));
    max-height: calc(100% - var(--header-height));
}

.vx-chat-wrapper .vx-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* max-width: 800px; */
    margin: auto auto;
}

/* width */
.vx-content-chat::-webkit-scrollbar {
    width: 8px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* Track */
.vx-content-chat::-webkit-scrollbar-track {
    background: #f1f1f100;
}

/* Handle */
.vx-content-chat::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* Handle on hover */
.vx-content-chat::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.vx-chat-wrapper .vx-content .vx-content-dashboard {
    display: none;
}

.vx-chat-wrapper .vx-content .vx-content-dashboard.active {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.vx-chat-wrapper .vx-content .vx-content-chat {
    flex-grow: 1;
    position: relative;
    overflow-y: scroll;
    max-height: 90%;
    margin: 10px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    display: none;
}

.vx-chat-wrapper .vx-content .vx-text-start-recomendations {
    text-align: center; 
    margin-top: 20px;
    font-size: 14px;
}

.vx-chat-wrapper .vx-content .vx-chat-box-recomendations {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 10px;
}

.vx-chat-wrapper .vx-content .vx-chat-box-recomendations .vx-recomendations-item {
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    user-select: none;
}

.vx-chat-wrapper .vx-content .vx-chat-box-recomendations .vx-recomendations-item .vx-recomendations-item-header {

}

.vx-chat-wrapper .vx-content .vx-chat-box-recomendations .vx-recomendations-item .vx-recomendations-item-header-title {
    font-size: 14px;
    font-weight: 600;
}

.vx-chat-wrapper .vx-content .vx-chat-box-recomendations .vx-recomendations-item .vx-recomendations-item-header-icon {
    margin-right: 5px;
}

.vx-chat-wrapper .vx-content .vx-chat-box-recomendations .vx-recomendations-item .vx-recomendations-item-header-icon i {
    font-size: 18px;
}

.vx-chat-wrapper .vx-content .vx-chat-box-recomendations .vx-recomendations-item .vx-recomendations-item-body {
    font-size: 14px;
    color: var(--text-body-color);
}

.vx-chat-wrapper .vx-content .vx-content-chat.active {
    display: flex;
}

.vx-chat-wrapper .vx-content .vx-content-chat .chat-item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.vx-chat-wrapper .vx-content .vx-content-chat .vx-content-chat-question {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.vx-chat-wrapper .vx-content .vx-content-chat .vx-content-chat-answer {
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.vx-chat-wrapper .vx-content .vx-content-chat .chat-content {
    padding: 15px;
}

.vx-chat-wrapper .vx-content .vx-content-chat .vx-content-chat-question .chat-content {
    background-color: #fcfcfe;
    border: 1px solid #d8d8d8;
    max-width: 80%;
    border-radius: 15px 0px 15px 15px;
    -webkit-border-radius: 15px 0px 15px 15px;
    -moz-border-radius: 15px 0px 15px 15px;
    -ms-border-radius: 15px 0px 15px 15px;
    -o-border-radius: 15px 0px 15px 15px;
}

.vx-chat-wrapper .vx-content .vx-content-chat .vx-content-chat-answer .chat-content {
    background-color: transparent;
}

.vx-chat-wrapper .vx-content .vx-content-chat .chat-content .chat-content-header .chat-date-time {
    font-size: 12px;
}

.vx-chat-wrapper .vx-content .vx-content-footer {
    padding: 10px 0px;
}

.vx-chat-wrapper .vx-content .vx-content-footer .vx-chat-input-form {
    position: relative;
}

.vx-chat-wrapper .vx-content .vx-content-footer .vx-chat-input-form .vx-chat-submit-question {
    height: 35px;
    width: 35px;
    justify-content: center;
    align-items: center;
    border: 0px solid transparent;
    background: #dedede;
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.vx-chat-wrapper .vx-content .vx-content-footer .vx-chat-input-form .vx-chat-submit-question:hover {
    background: #000;
    color: #fff;
}

.vx-chat-wrapper .vx-content .vx-content-footer .vx-chat-input-form .vx-chat-submit-question i {
    margin-bottom: -3px;
}

.vx-chat-wrapper .vx-content .vx-content-footer .chat-input {
    background-color: #f3f3f3;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    height: 60px;
}

.vx-chat-wrapper .vx-content .vx-content-footer .vx-chat-footer-info {
    font-size: 12px;
    display: block;
    margin: auto;
    max-width: 60%;
    text-align: center;
    padding: 8px;
}

.text-welcome {
    font-size: 28px;
    text-align: center;
}

.vx-chat-wrapper .vx-footer {
    position: fixed;
    bottom: 20px;
    left: 15px;
}

.vx-menu-toggle {
    background-color: var(--btn-background);
    color: var(--btn-text-color);
    font-size: 22px;
    padding: 3px 10px 3px 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
}

.vx-btn-switch-wrapper {
    position: fixed;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 10;
}

.vx-btn-switch-group {
    position: relative;
}

.vx-btn-switch-group .vx-btn-switch-item {
    background-color: var(--btn-background);
    color: var(--btn-text-color);
    font-size: 22px;
    padding: 3px 10px 3px 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
}

.circle-ai-anim {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0px 0px 80px 15px red;
    color: #fff;
    background-color: rgb(0, 0, 0);
    animation: circleAi 10s 0s infinite linear alternate;
    -webkit-animation: circleAi 10s 0s infinite linear alternate;
    margin: auto auto;
    position: relative;
    z-index: 0;
}

.circle-ai-vx {
    margin-bottom: 30px;
    font-weight: 800;
}

@keyframes circleAi {
    0% {
        box-shadow: 0px 0px 80px 15px green;
    }

    50% {
        box-shadow: 0px 0px 80px 15px blue;
    }

    100% {
        box-shadow: 0px 0px 80px 15px rgb(79, 0, 143);
    }
}

@media screen and (max-width: 600px) {

    h1 {
        font-size: 24px;
    } 
    
    h2 {
        font-size: 20px;
    } 
    
    h3 {
        font-size: 18px;
    } 
    
    h4 {
        font-size: 16px;
    }
    
    h5 {
        font-size: 12px;
    }
    
    h6 {
        font-size: 10px;
    }

    .text-welcome {
        font-size: 24px;
    }


    .vx-chat-wrapper .vx-content .vx-chat-box-recomendations {
        grid-template-columns: 1fr 1fr;
        margin-left: 10px;
        margin-right: 10px;
    }

    .vx-chat-wrapper .vx-content .vx-content-footer .vx-chat-footer-info {
        max-width: 100%;
    }

    .vx-btn-switch-wrapper {
        top: 70px;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
}

    .vx-chat-wrapper .vx-footer {
        top: 74px;
        left: 60px;
    }

    .vx-btn-switch-group .vx-btn-switch-item, .vx-menu-toggle {
        font-size: 18px;
    }

    .vx-chat-wrapper .vx-content .vx-content-footer .chat-input {
        border-radius: 0px !important;
        -webkit-border-radius: 0px !important;
        -moz-border-radius: 0px !important;
        -ms-border-radius: 0px !important;
        -o-border-radius: 0px !important;
        min-height: 80px;
    }

    .vx-chat-wrapper .vx-content .vx-content-dashboard.active {
        padding-top: 60px;
    }
}
