<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#kpd_chat {
    position: fixed; bottom: -480px; right: 10px; width: 420px; height: 640px;
    z-index: 99999;
    box-shadow: 0 0 10px 1px #808080;
    -webkit-transition: bottom .5s; transition: bottom .5s;
    -webkit-transform: scale(0.75) translate(16.67%, 16.67%); transform: scale(0.75) translate(16.67%, 16.67%);
}
#kpd_chat[enabled="true"] {
    bottom: 0px;
}
#kpd_chat[enabled="false"] &gt; .kpd_button {
    display: none;
}

.kpd_koopidtag,
#kpd_koopidtag {
    visibility: hidden;
}

#kpd_chat &gt; .kpd_button {
    position: absolute; z-index: 2;
    width: auto; height: 30px; top: -30px;
    background-color: rgba(0,0,0,0.5); color: #ffffff;
    cursor: pointer; text-align: center;line-height: 30px;
    border-top-left-radius: 5px; border-top-right-radius: 5px;
    padding-left: 10px; padding-right: 10px; font-size: 14px;
    box-sizing: border-box;
}
#kpd_chat[enabled="true"] &gt; .kpd_button.kpd_minimize {
    border-top-right-radius: 0px;
    right: 30px; width: 30px;
    display: none;
}
#kpd_chat[enabled="true"] &gt; .kpd_button.kpd_close {
    border-top-left-radius: 0px;
    right: 0px; width: 30px;
}
#kpd_chat[enabled="minimized"] &gt; .kpd_button.kpd_minimize {
    right: 0px;
}
#kpd_chat[enabled="minimized"] &gt; .kpd_button.kpd_close {
    display: none; visibility: hidden;
}
#kpd_chat &gt; .kpd_button.kpd_minimize:after {
    content: "_";
}
#kpd_chat &gt; .kpd_button.kpd_close:after {
    content: "x";
}
#kpd_chat[enabled="minimized"] &gt; .kpd_button.kpd_minimize:after {
    content: "restore";
}
#kpd_iframe {
    position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;
}

@media only screen and (max-width : 640px) {
    #kpd_chat {
        position: fixed; bottom: -100%; right: 0px; width: 100%; height: 100%;
        -webkit-transform: none; transform: none;
    }
    #kpd_chat[enabled="true"] {
        bottom: 0px; height: 100%;
    }
    #kpd_chat[enabled="true"] &gt; .kpd_button.kpd_minimize {
        top: 0px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 5px;
    }
    #kpd_chat[enabled="true"] &gt; .kpd_button.kpd_close {
        top: 0px;
        border-top-right-radius: 0px;
    }
}

</pre></body></html>