#openChatBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1c8fb2;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 99999;
}

#chatContainer {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 45px;
    /* width: 29%; */
    height: 400px;
    border: 1px solid #7c15ff;
    border-radius: 15px;
    padding: 8px;
    background: #06040b;
    z-index: 999;
    /* top: 160px; */
    z-index: 9999;
}

#closeChatBtn {
    position: absolute;
    top: -8px;
    right: -5px;
    /* background-color: #ccc; */
    border: none;
    border-radius: 50%;
    /* padding: 5px; */
    font-size: 16px;
    cursor: pointer;
}

#chatIframe {
    width: 100%;
    height: calc(100% - 30px);
}