
    .webchat-container {
        display: flex;
        position: fixed;
        flex-direction: column;
        overflow: hidden;
        z-index: 10000;

        width: 400px;
        max-width: 90vw;
        height: 95vh;
        bottom: 20px;
        margin: 0px 20px 0px 20px;
        
        font-size: small;
        background: teal;
        border: solid teal 4px;
        border-radius: 4px;
        overflow: hidden;
    }

    .webchat-header {
        display: flex;
        flex-direction: row;

        width: 100%;
        height: 35px;

        border-bottom: solid teal 4px;
        background: teal;
    }

    .webchat-header-button {
        display: flex;
        flex-direction: row;
        justify-content: center;

        width: 25px;
        height: 25px;
        margin-right: 2px;
        margin-left: 2px;
        padding: 0;

        border: none;
        color: white;
        font-size: 12px;
        background: teal;
    }

    .webchat-header-button:hover {
        color: teal;
        background: white;
    }

    .webchat-header-window-management {
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        justify-content: flex-end;
        align-items: center;
        order: 10;
    }

    .accessibility-options {
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        justify-content: flex-start;
        align-items: center;
        order: 5;
    }

    .webchat-conversation {
        display: flex;
        width: 100%;
        height: 100%;

        border: none;
        background: white;
    }

    .webchat-toggle-button {
        position: fixed;

        height: 60px;
        width: 60px;
        right: 20px;
        bottom: 20px;

        background: teal;
        border: none;
        border-radius: 50%;
        font-size: 30px;
    }

    .webchat-toggle-button:hover {
        opacity: 0.8;
    }

    .webchat-toggle-button .glyphicon {
        padding-top: 8px;
        color: white;
    }

    .float-right {
        right: 0px;
    }

    .invisible {
        display: none;
    }

    .large-font {
        font-size: large;
    }