.chat-bot-container {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 50px 50px;
    z-index: 21;
    background-color: #ffffffba;
    display: none;
    text-align: center;
}

#heading {
    display: flex;
    align-items: center;
    background-color: rgba(228,0,43,1);
    height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    color: white;
    text-align: left;
    padding-left: 10px;
}

#webchat {
    position: absolute;
    height: calc(100% - 50px);
    width: 100%;
    top: 50px;
    overflow: hidden;
}

    #webchat p {
        font-size: 16px !important;
        line-height: 22px !important;
        margin-bottom: 10px !important;
        text-align: initial;
    }

.chat-bot-container .chat-bot {
    display: inline-block;
    border-radius: 20px;
    background-color: white;
    border: 2px solid rgba(228,0,43,1);
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 900px) {
    .chat-bot-container .chat-bot {
        width: 500px;
        height: 80%;
        margin-top: 50px;
    }

    .chat-bot-container .close-chat-bot-button {
        position: absolute;
        top: 15px;
        right: 15px;
    }
}

@media only screen and (max-width: 900px) {

    .chat-bot-container {
        padding: 50px 25px;
    }

        .chat-bot-container .chat-bot {
            width: 100%;
            height: 100%;
            margin-top: 30px;
        }

        .chat-bot-container .close-chat-bot-button {
            position: absolute;
            top: 0;
            right: 0;
        }
}


.chat-bot-container.open {
    opacity: 1;
}

.chat-floating-action-button {
    position: fixed;
    z-index: 20;
    right: 20px;
    bottom: 20px;
    margin-bottom: 0;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .chat-floating-action-button:hover {
        /*background-color: black !important;*/
        color: black !important;
    }

    /*.chat-floating-action-button:hover > .b-msg__corner {*/
    /*background-color: black !important;*/
    /*border-left: 23px solid black !important;*/
    /*border-left-color: black !important;
                }*/

    .chat-floating-action-button .b-msg__corner {
        bottom: 35px !important;
        border-top: 30px solid transparent !important;
        border-bottom: 12px solid transparent !important;
    }

    .chat-floating-action-button .b-msg__txt {
        font-family: 'Gilroy Bold' !important;
        font-weight: normal !important;
    }
