<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body {
    min-width: 100%;
    min-height: 100% !important;
    padding: 0;
    margin: 0;
    display: flex;
    direction: rtl;
}

body {
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-around;
    vertical-align: middle;
}

.xhrMessageBox {
    width: 90%;
    margin: auto;
    position: fixed;
    height: auto;
    padding: 16px;
    top: 10px;
    z-index: 1000;
    max-width: 800px;
    border: 2px solid rgb(115, 115, 115);
    border-radius: 7px;
    animation: 2s 1 xhrMessageBoxAnimation ease-in-out forwards;
    direction: rtl;
    text-align: center;
    font-size: 18px;
}

.xhrMessageBoxRemoving {
    animation: 2s 1 xhrMessageBoxAnimationRemoving ease-in-out forwards !important;
}

@keyframes xhrMessageBoxAnimation {
    from {
        opacity: 0;
        top: -150%;
    }
    to {
        opacity: 1;
        top: 25px;
    }
}

@keyframes xhrMessageBoxAnimationRemoving {
    from {
        opacity: 1;
        top: 25px;
    }
    to {
        opacity: 0;
        top: -150%;
    }
}</pre></body></html>