/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.ai-chat-support-container {
    position: fixed;
    right: 37px;
    bottom: 30px;
    text-align: right;
    z-index: 10000000;
}

.ai-chat-support {
    background-color: white;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    height: 100%;
    width: 100%;
    padding: 0 8px 18px 10px;
    /* padding-left: 19px; */
    box-sizing: border-box;

    position: fixed;
    top: 0;
    left: 0;
}

.ai-chat-support-header {
    padding: 25px 29px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #686666;
    height: 70px;
    overflow: hidden;
    text-align: left;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.ai-chat-support-close {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #686666 !important;
    background-color: transparent !important;
    border: none;
    padding: 0;
}

.ai-chat-support iframe {
    border: 0;
    height: calc(100% - 70px);
    width: 100%;
}

.ai-chat-support-bubble {
    background: url('/wp-content/plugins/ai-chat-support/public/img/chat-icon.svg') no-repeat;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: unset;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
    background-position: 10px 0;
    background-size: 65px 69px;
}

.hide-chat-element {
    display: none;
}

.ai-chat-support-remove {
    padding: 0;
    font-size: 12px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    line-height: 1;
    top: 3px;
    right: 3px;
    position: absolute;
    background-color: red !important;
    color: white !important;
}

@media (min-width: 768px) {
    .ai-chat-support {
        height: 418px;
        width: 347px;
        position: static;
    }

    .ai-chat-support-bubble {
        width: 76px;
        height: 76px;
    }
}