@media (min-width: 1152px) {
    #chat {
        right: 0px;
        z-index: 100;
    }

    #chat-button {
        right: 120px;
        bottom: 28px;
        z-index: 100;
    }
}

@media (max-width: 1151px ){
    #chat {
        right: 0px;
        z-index: 100;
    }

    #chat-button {
        right:  80px;
        bottom: 28px;
        z-index: 100;
    }
}

#chat {
    display: none;
    position: fixed;
    bottom: 0;
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
}


#chat-button {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: rgb(54, 129, 254);
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 8px 0 rgba(117, 117, 117, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

#chat-button:hover {
    cursor: pointer;
    background-color: rgba(54, 129, 254, 0.8);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
}

.gBEQJp {
    width: 23rem;
}