﻿@media (min-device-width : 768px) {
    .desktop_bubble_chat {
        height: 410px;
        max-height: 410px;
        width: 312px;
        position: fixed;
        bottom: 1em;
        right: 1em;
        border: none;
        outline: none;
        box-sizing: border-box;
        z-index: 999;
        overflow: hidden;
        padding: 0;
    }
}

@media (max-device-width: 768px) {
    .desktop_bubble_chat {
        height: 100%;
        max-height: 100%;
        width: 100%;
        position: fixed;
        bottom: 0;
        right: 0;
        border: none;
        outline: none;
        box-sizing: border-box;
        z-index: 999;
        overflow: hidden;
        padding: 0;
    }
}

@media (min-width : 768px) {
    .desktop_bubble_chat {
        height: 410px;
        max-height: 410px;
        width: 312px;
        position: fixed;
        bottom: 1em;
        right: 1em;
        border: none;
        outline: none;
        box-sizing: border-box;
        z-index: 999;
        overflow: hidden;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .desktop_bubble_chat {
        height: 100%;
        max-height: 100%;
        width: 100%;
        position: fixed;
        bottom: 0;
        right: 0;
        border: none;
        outline: none;
        box-sizing: border-box;
        z-index: 999;
        overflow: hidden;
        padding: 0;
    }
}

.mobile_bubble_chat {
    height: 100%;
    max-height: 100%;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    z-index: 999;
    overflow: hidden;
    padding: 0;
}

.bubble_chat_hidden {
    display: none;
}

.bubble_chat_placeholder {
    background: #fff;
    box-shadow: 0 0 3px #000;
    color: #4F5051;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-align: center;
}

.bubble_chat_placeholder_content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
}

.bubble_chat_placeholder_section {
    align-items: center;
    display: flex;
    height: 50%;
}

.bubble_chat_placeholder_section > * {
    width: 100%;
}

.bubble_chat_placeholder_close {
    background: none;
    border: 0;
    color: #0078d4;
    cursor: pointer;
    font: inherit;
    padding: 0;
    text-align: center;
}

.minimized_chat {
    height: 56px;
}
