<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
    Created on : 17. 7. 2020
    Author     : Listr
*/

div#webNotificationHolder {
    display: block;
    position: fixed;
    top: 60px;
    right: 0px;
    width: 250px;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
}
div#webNotificationHolder.full {
    bottom: 0;
}
div#webNotificationHolder .webMessage {
    opacity: 0.8;
    transition: opacity ease-in-out 150ms;
    cursor: pointer;
}
div#webNotificationHolder .webMessage:hover {
    opacity: 1;
}
div#webNotificationHolder .webMessage .panel-default {
    margin-bottom: 5px;
    background-color: rgb(34 34 34);
    color: white;
    border-radius: 3px;
    border-color: rgb(0 167 225 / 0.5);
}
div#webNotificationHolder .panel-heading {
    line-height: 70%;
    padding: 6px;
    background-color: rgb(0 0 0);
    border-radius: 3px 3px 0 0;
    border-color: rgb(0 167 225);
    color: rgb(0 167 225);
}
div#webNotificationHolder .panel-body {
    padding: 3px 6px;
}
#webNotificationHolder span.glyphicon.glyphicon-remove {
    position: absolute;
    opacity: 0;
    right: 5px;
    top: 3px;
    transition: opacity ease-in-out 150ms;
}
#webNotificationHolder:hover span.glyphicon.glyphicon-remove {
    opacity: 1;
}
.pos-relative {
    position: relative;
}
div#webNotificationRequest {
    position: fixed;
    opacity: 0;
    bottom: -150px;
    left: 12px;
    padding: 0;
    z-index: 1029;
    height: 175px;
    max-width: 500px;
    width: 100%;
    background-color: #222222;
    box-shadow: 0px -2px 40px -5px black;
    border: 1px solid #2d2d2d;
    color: white;
    border-top: none;
    border-radius: 4px;
    text-align: left;
}
div#webNotificationRequest&gt;.hea {
    position: absolute;
    display: block;
    width: 100%;
    height: 100px;
    top: 5px;
    padding: 15px;
}
div#webNotificationRequest&gt;.hea&gt;h3 {
    margin: 0;
    margin-top: -5px;
}
div#webNotificationRequest&gt;.hea&gt;span {
    display: block;
    text-align: justify;
    padding: 9px 1px;
}
div#webNotificationRequest&gt;.foo {
    position: absolute;
    display: block;
    width: 100%;
    height: 50px;
    bottom: 0;
    padding: 8px;
    text-align: right;
}
div#webNotificationRequest&gt;.foo&gt;img {
    position: absolute;
    left: 11px;
    bottom: -15px;
    width: 77px;
}
div#webNotificationRequest&gt;.foo&gt;.btn-success {margin-left: 8px;}
div#webNotificationRequest&gt;.foo&gt;.btn {
    width: 110px;
}
div#webNotificationRequest&gt;.foo&gt;.btn.btn-danger {
    background-color: transparent;
    border-color: rgb(0 0 0 / 0.15);
    color: rgb(140 140 140);
    margin-right: 5px;
}
button.webNotificationCloseAll {
    display: block;
    position: fixed;
    z-index: 9;
    top: 60px;
    right: 242px;
    background: #31b6e5;
    color: #313131;
    border: 2px solid #313131;
}
button.webNotificationCloseAll:hover {
    background: #2386a9;
}
#webNotificationHolder&gt;.webNotificationCloseAll&gt;span.glyphicon.glyphicon-remove {
    position: relative;
    opacity: 1;
    top: 2px;
    right: 0;
}
@media all and (max-width:1220px) {
    div#webNotificationHolder {
        top: 106px;
        right: 0px;
    }
    .notification-position {
        top: 95px !important;
    }
    button.webNotificationCloseAll {
        top: 106px;
        right: 248px;
    }
}
@media all and (max-width:800px) {
    div#webNotificationRequest {
        left: 0;
        bottom: 0;
    }
}</pre></body></html>