.notify-popover-wrapper {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10000;
    animation: notifyPopoverFadeIn 700ms linear;
    color:#000000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.notify-popover-wrapper.notify-popover-active {
    display: block;
    top: 0;
    transition: top 700ms linear;
}
.notify-popover-wrapper.notify-popover-slideup {
    top: -100%;
}
.notify-popover {
    margin: 0 auto;
    padding: 15px;

    max-width: 500px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    background-color: #ffffff;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.22);
    font-size: 1.0em;
}
.notify-popover-body {
    display: flex;
    flex-direction: row;
}
.notify-popover-avatar {
    flex: 1;
    margin-right: 20px;
}
.notify-popover-headline {
    flex: 4;
    margin-bottom: 7px;
    text-align: justify;
}
.notify-popover-buttons {
    text-align: right;
}
.notify-popover-buttons .notify-popover-btn {
    padding: 10px 20px;
    border: 0;
    background-color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    color: #1165f1;
    fonts-size:1em;
}
.notify-popover-buttons .notify-popover-btn.notify-popover-btn-active {
    background-color: #1165f1;
    color: #ffffff;
    transition: background-color 300ms linear;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12);
}
.notify-popover-buttons .notify-popover-btn.notify-popover-btn-active:hover {
    background-color: #0b4cb8;
}

@media (min-width: 768px) {
    .notify-popover-buttons .notify-popover-btn {
        margin-left: 5px;
        padding: 10px 30px;
        font-size:1em;
    }
}
@-webkit-keyframes notifyPopoverFadeIn {
    from { top: -100%; }
    to { top: 0; }
}  
@keyframes notifyPopoverFadeIn {
    from { top: -100%; }
    to { top: 0; }
}