.chatBlock{
    display: inline-block;
    position: fixed;
    bottom: 0px;
    z-index: 9999999;
    right: 0px;
    left: auto;
}




.chatBox {
    display: block;
    width: 360px;
    border-radius: 10px;
    transform: translate3d(0px, 0px, 0px);
    margin-right: 10px;
    margin-bottom: 115px;
    background-color: rgba(255, 255, 255, 0);
    transition: opacity 0.3s ease 0s, margin 0.3s ease 0s, visibility 0.3s ease 0s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 24px 0px;
    left: auto;
    position: fixed;
    bottom: 0px;
    right: 0px;
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    touch-action: auto;
}


.chatDisplay {
    border-radius: 10px;
    overflow: hidden;
}








.chatIconBlock{
    position: fixed;
    z-index: 10000;
    margin: 20px 10px 30px 0px;
    inset: auto 0px 0px auto;


}


.chatIcon {
    border-radius: 100px;
    border-color: rgba(0, 0, 0, 0);
    color: rgb(79, 206, 93);
    font-family: inherit;
    font-weight: bold;
    font-size: 0px;
    background-color: rgb(255, 255, 255) !important;
    

    border-width: 0px;
    box-shadow: rgba(0, 0, 0, 0.41) 0px 4px 12px 0px;
    position: relative;
    position: relative;
    height: fit-content;
    width: fit-content;
    max-width: 100%;
    padding: 0px;
    line-height: 1.32;
    cursor: pointer;
    box-sizing: border-box;
    background: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    border-style: solid;
}


.chatIcon:hover
{
    background-color: rgb(229, 252, 232) !important;
}


.chatIcon > img
{
    width: 32px;
    height: 32px;
    margin: 17px;
}



.closeChatBox {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    outline: transparent;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex !important;
    
}


.startChat:hover
{
    background-color: rgb(48, 158, 89) !important;
}



.chatHeader {
    background: rgb(9, 94, 84);
    color: rgb(17, 17, 17);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 24px 20px;
}



@media (max-width: 380px) {
    .chatBox {
        width: 94%;
    }
}