.header {
    width: 100%;
    height: 56px;
    border-bottom: 1px solid #b8babc;
    background-color: white;
    display: inline-block;
    transition: all 150ms linear;
    text-align: right;
    padding-left: 56px;
    z-index: 9;
    position: fixed;
}

.header--open {
    width: 100%;
    padding-left: 56px;
}

.chatbot-icon {
    display: inline-block;
    position: relative;
    height: 56px;
    width: 15%;
}

.chatbot-icon .chatbot-icon-inner {
    position: relative;
    display: flex;
    justify-content: center;
}

.circle-container {
    position: absolute;
    top: 4px;
    width: 45px;
    height: 45px;
    border-radius: 35px;
    border: solid 3px black;
}

.chatbot-icon .chatbot-icon-inner i {
    position: absolute;
    top: 12px;
    font-size: 2rem;
}

.header-chatbot-container {
    position: absolute;
    background: white;
    margin-top: -8px;
    padding: 8px;
    width: 35vw;
    height: 55vh;
    min-height: 537px;
    overflow: scroll;
    left: 30%;
}

.chatbot-circle-display-container {
    display: flex;
    position: absolute;
    bottom: 18px;
    width: 100%;
    justify-content: center;
}

.control-circle {
    height: .35rem;
    width: .35rem;
    margin: 3px;
    border-radius: .35rem;
    background: #2bbe69;
}

@media screen and (max-width: 991px) {
    .header {
        height: 59px;
        width: 100%;
        background-color: #2c80b8;
        border: 0;
        text-align: right;
    }

    .header--open {
        width: 100%;
    }

    .header-chatbot-container {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        bottom: -53px;
        left: 0;
    }

    .chatbot-icon {
        display: inline-block;
        position: relative;
        height: 56px;
        width: 15%;
    }

    .chatbot-icon .chatbot-icon-inner {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .circle-container {
        position: absolute;
        top: 4px;
        width: 45px;
        height: 45px;
        border-radius: 35px;
        border: solid 3px black;
    }

    .chatbot-icon .chatbot-icon-inner i {
        position: absolute;
        top: 12px;
        font-size: 2rem;
    }

}