.framed-chat {
    z-index: 100000 !important;
    position: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    width: 100dvw;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.framed-chat.close {
    display: none;
}

.chat-modal {
    width: 60dvw;
    height: 150px;
    overflow: hidden;
    border: none;
    box-shadow: 0 0 10px 5px rgba(0, 0, 128, .15)
}

.chat-modal.expand {
    height: 60dvh;
}

.chat-modal.maximize {
    height: 96dvh;
}


/* Mobile */
@media (max-width: 844px) {

    .chat-modal {
        width: 100dvw;
        height: 100dvh;
        box-shadow: none;
    }

    .chat-modal.expand {
        height: 100dvh;
    }

    .chat-modal.maximize {
        height: 100dvh;
    }
}