.plugins-chat-entry {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 1px 6px rgb(0 0 0 / 6%), 0 2px 32px rgb(0 0 0 / 16%);
    text-align: center;
}
.plugins-chat-entry-text {
    background: #4caf50;
    padding: 10px 20px;
    border-radius: 1000px;
    color: #ffff;
}
.plugins-chat-entry-text span {
    font-weight: bold;
    font-size: 14px;
    margin-left: 5px;
}
.plugins-chat-entry-text-vertical {
    width: 55px;
    padding: 20px 15px;
}
.plugins-chat-entry-text-vertical span {
    margin-left: 0;
    margin-top: 5px;
    display: block;
    line-height: 18px;
}
.plugins-chat-popup {
    position: fixed;
    z-index: 1050;
    inset: 0px;
    border-radius: 8px;
    transition: none 0s ease 0s;
    max-width: 1100px;
    height: 680px;
    box-shadow: rgb(0 0 0 / 30%) 1px 1px 15px 0px;
    margin: auto;
    display: block;
    overflow: hidden;
    left: 0;
    top: 0;
}
.plugins-chat-popup .close-submit {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #f5f5f5;
    font-size: 20px;
    width: 30px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}
.plugins-chat-popup .close-submit:hover {
    color: #fff;
}
.plugins-chat-popup iframe {
    width: 100%;
    height: 100%;
}
@media only screen and (max-width: 641px) {
    .plugins-chat-popup {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .plugins-chat-entry-text {
        bottom: 60px;
    }
}