/* 
    Created on : 17. 7. 2020
    Author     : Listr
*/

div#webNotificationHolder {
    display: block;
    position: fixed;
    top: 60px;
    right: 0px;
    width: 250px;
    z-index: 9999;
}
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>.webMessage: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: #c7c7c7;
    box-shadow: -1px -2px 40px -5px black;
    border: none;
    color: black;
    border-radius: 4px;
    text-align: left;
}
div#webNotificationRequest>.hea {
    position: absolute;
    display: block;
    width: 100%;
    height: 100px;
    top: 5px;
    padding: 15px;
}
div#webNotificationRequest>.hea>h3 {
    margin: 0;
    margin-top: -5px;
}
div#webNotificationRequest>.hea>span {
    display: block;
    text-align: justify;
    padding: 9px 1px;
}
div#webNotificationRequest>.foo {
    position: absolute;
    display: block;
    width: 100%;
    height: 50px;
    bottom: 0;
    padding: 8px;
    text-align: right;
}
div#webNotificationRequest>.foo>img {
    position: absolute;
    left: 11px;
    bottom: -15px;
    width: 77px;
}
div#webNotificationRequest>.foo>.btn-success {margin-left: 8px;}
div#webNotificationRequest>.foo>.btn {
    width: 125px;
}
div#webNotificationRequest>.foo>.btn.btn-danger {
    background-color: transparent;
    border-color: rgb(0 0 0 / 0.15);
    color: rgb(78 78 78);
    margin-right: 5px;
}
@media all and (max-width:1220px) {
    div#webNotificationHolder {
        top: 106px;
        right: 0px;
    }
    .notification-position {
        top: 95px !important;
    }
}
@media all and (max-width:800px) {
    div#webNotificationRequest {
        left: 0;
        bottom: 0;
    }
}