.sai_chat_plugin_container {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0.5rem;
}

.sai_chat_button {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: white;
    cursor: pointer;
    box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, 0.5);
    border-width: 3px;
    border-style: solid;
    border-color: #ec133d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sai_chat_button_ai_logo {
    height: 35px;
    width: 35px;
}

.sai_chat_window {
    height: 0;
    width: 0;
    display: flex;
    flex-direction: column;
    background-color: #f7f0f2;
    border-radius: 15px;
    overflow: hidden;
}

.sai_chat_frame {
    background-color: transparent;
    overflow: hidden;
}

@media screen and (max-width: 990px) {
    .sai_chat_plugin_container {
        /*flex: 1;*/
    }
}