.lamma-top-block {
    display: none !important;
}

#assistant {
    display: flex;
    justify-content: flex-start;
}

.chat-container {
    min-height: 100vh;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: -2px 0 2px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-end;
}

.chat-box {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
}

.chat-message {
    padding: 8px 12px;
    margin-bottom: 20px;
}

.user-message {
    border-radius: 16px 16px 4px;
    background-color: #d9ffb3;
    align-self: flex-end;
    margin-left: 1.5rem;
}

.bot-message {
    border-radius: 4px 16px 16px;
    background-color: #e7f3fe;
    align-self: flex-start;
    margin-right: 1.5rem;
}

.hint-prefix-message {
    padding: 0 5px;
    margin-bottom: 9px;
    font-size: 14px;
    color: #757474;
}

.hint-message {
    border-radius: 16px;
    background-color: #fff2b3;
    align-self: flex-start;
    cursor: pointer;
}

.hint-message::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid white;
    margin-left: 10px;
}

.hint-message:hover {
    background-color: #ffd600;
    font-weight: bold;
}

.asst-message {
    border-radius: 4px 16px 16px;
    background-color: #ffd600;
    align-self: flex-start;
    cursor: pointer;
    font-weight: bold;
}

#chatForm {
    display: flex;
    padding: 10px;
}

#userInput {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    margin-left: 10px;
    color: #fff;
    cursor: pointer;
}

.btn-success {
    background-color: #62C300;
    padding: 10px 30px;
    font-size: 14px;
}

.btn-success:hover {
    background-color: #6FDC00;
}


.assistant-page {
    background: white
}

.assistant-page footer {
    display: none;
}

.assistant-main-container {
    background-size: contain;
    position: relative;
    padding-bottom: 90px;
    background: white url(/web/bg/bg-crosses.svg) fixed center top repeat-x;
}

.assistant-sidebar h1 {
    margin-left: -28px;
    padding-left: 28px;
    font-size: 26px;
    background: url(/web/icons/robot.svg) no-repeat left 2px;
}

@media  ( max-width:767px) {
    .assistant-sidebar h1 {
        margin-left: 0;
        font-size: 22px;
        background-size: 22px;
    }
}


@media (max-height: 799px) and ( min-width:768px) {
    .assistant-sidebar {
        background: transparent url(/web/bg/robot-and-oval.svg)  no-repeat center bottom;
        background-size: contain;
        padding-bottom: 200px;
    }
}



@media (min-height: 800px) {
    .assistant-sidebar {
        position: fixed;
        width: 260px;
    }

    .assistant-main-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent url(/web/bg/robot-and-oval.svg) fixed no-repeat left calc(100% - 95px);
        background-size: 560px;
    }

    @media (max-width: 1599px) {
        .assistant-main-container::before {
            background-size: 511px;
            background-position: calc(50% - 420px) calc(100% - 88px);
        }
    }
    /** md **/
    @media (min-width: 992px) and (max-width: 1199px) {
        .assistant-sidebar {
            width: 220px;
        }
        .assistant-main-container::before {
            background-size: 401px;
            background-position: 1px calc(100% - 110px);
        }
    }
    /** @sm **/
    @media (min-width: 768px) and (max-width: 991px) {
        .assistant-sidebar {
            width: 200px;
        }
        .assistant-main-container::before {
            background-size: 320px;
            background-position: 1px calc(100% - 90px);
        }
    }

    @media (max-width: 767px) {
        .assistant-sidebar {
            position: relative;
            width: auto;
        }
        .assistant-main-container::before {
            display: none;

        }

    }
}


.assistant-sidebar .list-unstyled li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.2;
}

.chat-form-container {
    position: fixed;
    bottom: 0;
    padding: 20px 0;
    background: rgba(234, 243, 252, 1);
    width: 100%;
    box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.1);
}