.plugins-chat-entry {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1020;
    cursor: pointer;
    text-align: center;
    filter: drop-shadow(0 0 0.6rem #ddd);
}
.plugins-chat-entry-text {
    background: #4caf50;
    padding: 0.2rem 0.8rem;
    border-radius: 10rem;
    color: #fff;
}
.plugins-chat-entry-text span,
.plugins-chat-entry-text i {
    font-size: 1.2rem;
}
.plugins-chat-entry-text-vertical {
    width: 4rem;
    padding: 1rem;
}
.plugins-chat-entry-text-vertical span {
    display: block;
    line-height: 1.6rem;
}
.plugins-chat-entry-text-vertical i {
    font-size: 1.4rem;
}
.plugins-chat-popup {
    position: fixed;
    z-index: 1050;
    border-radius: 0.8rem;
    transition: none 0s ease 0s;
    width: 100%;
    max-width: 110rem;
    height: 68rem;
    box-shadow: rgb(0 0 0 / 30%) 0.1rem 0.1rem 1.5rem 0px;
    margin: auto;
    display: block;
    overflow: hidden;
    left: 0;
    top: 0;
}
@media only screen and (min-width: 1100px) {
    .plugins-chat-popup {
        left: calc((100% - 110rem) / 2)
    }
}
@media only screen and (min-height: 680px) {
    .plugins-chat-popup {
        top: calc((100% - 68rem) / 2)
    }
}
.plugins-chat-popup .close-submit {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    color: #f5f5f5;
    font-size: 2rem;
    width: 3rem;
    line-height: 3rem;
    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: 640px) {
    .plugins-chat-popup {
        width: 100%;
        height: 100%;
        border-radius: 0;
        left: 0;
        top: 0;
    }
    .plugins-chat-entry-text {
        bottom: 6rem;
    }
}