<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.jGrowl {
    z-index: 9999;
    color: #333;
    position: fixed;
    right: calc(30% - 350px);
    bottom: 10%;
}

.jGrowl.top-left {
        left: 0;
        top: 0;
    }

    .jGrowl.top-right {
        right: 0;
        top: 0;
    }

    .jGrowl.bottom-left {
        left: 0;
        bottom: 0;
    }

    .jGrowl.bottom-right {
        right: 0;
        bottom: 0;
    }

    .jGrowl.center {
        top: 0;
        width: 50%;
        left: 25%;
    }

.jGrowl-closer, .jGrowl-notification {
    min-width: 350px;
    display: none;
}

.jGrowl.center .jGrowl-closer, .jGrowl.center .jGrowl-notification {
    margin-left: auto;
    margin-right: auto;
}

.jGrowl .success {
    background-color: #42c30a !important;
    color: #fafafa;
}

.jGrowl .error {
    background-color: #ff573b !important;
    color: #fafafa;
}

.jGrowl .warning {
    background-color: red !important;
    color: #fafafa;
}

.jGrowl .info {
    background-color: #3bafda !important;
    color: #fafafa;
}

.jGrowl-notification {
    /*background-color: rgba(241,241,241,.97);*/
    text-align: left;
    /* border-radius: 3px; */
    min-height: 55px;
    margin: 10px;
    /*box-shadow: 0 1px 0 0 rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.08), 0 1px 5px 0 rgba(0,0,0,.2);*/
    padding: 15px;
    min-width: 350px;
    -webkit-box-shadow: 0 0 5px 2px rgba(148, 148, 148, 0.5);
    box-shadow: 0 0 5px 2px rgba(148, 148, 148, 0.5);
}

    .jGrowl-notification .jGrowl-header {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 700;
        display: none;
    }

.jGrowl-message {
    overflow: hidden;
}

.jGrowl-notification img {
    width: 50px;
    float: left;
    margin-right: 15px;
    display: none;
}

.jGrowl-notification h3 {
    font-size: 12px;
    overflow: hidden;
    line-height: 20px;
    margin: 0;
    display: none;
}

.jGrowl-notification .jGrowl-close {
    color: #fff;
    border-radius: 3px;
    z-index: 99;
    border: none;
    float: right;
    font-size: 1.4em;
    line-height: 18px;
    cursor: pointer;
    /*background-color: #999;*/
    background-color: transparent;
}

    .jGrowl-notification .jGrowl-close:hover {
        background-color: #777;
    }

.jGrowl-closer {
    /*background-color: #000;*/
    background-color: transparent;
    opacity: .9;
    filter: alpha(Opacity=(.9*100));
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=(.9*100));
    zoom: 1;
    border-radius: 5px;
    cursor: pointer;
    font-size: .9em;
    font-weight: 700;
    text-align: center;
    margin: 10px;
    padding: 4px 10px;
}

    .jGrowl-closer .ui-state-highlight, .jGrowl-closer .ui-widget-content .ui-state-highlight, .jGrowl-closer .ui-widget-header .ui-state-highlight, .jGrowl-notification .ui-state-highlight, .jGrowl-notification .ui-widget-content .ui-state-highlight, .jGrowl-notification .ui-widget-header .ui-state-highlight {
        /*border: 1px solid #000;*/
        background: #000;
        color: #fff;
    }

@media print {
    .jGrowl {
        display: none;
    }
}
</pre></body></html>