#notification-widget {
    position: absolute;
    margin: 1em;
    background-color: #ffffff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.5s linear 0.5s, opacity 0.5s linear;
	z-index: 999;
}

.north-west {
    top: 0;
}

.north-east {
    top: 0;
    right: 0;
}

.south-west {
    bottom: 0;
    left: 0;
}

.south-east {
    bottom: 0;
    right: 0;
}

.show {
    visibility: visible !important;
    opacity: 1 !important;
    transition-delay: 0.5s !important;
}

.pop-up {
    margin: 0;
    width: 400px;
    box-sizing: border-box;
    position: relative;
    color: #404040;
    font-size: 0.9em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.pop-up img {
    display: block;
    width: 100px;
    height: 100px;
}

.pop-up .close {
    cursor: default;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0.2em;
    font-size: 1.2em;
    line-height: 1;
}

.pop-up .popup-panel {
    display: flex;
}

.pop-up .icon {
}

.pop-up .body {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    height: 100px;
}

.pop-up .body > div {
    margin: 0.2em;
}

.pop-up .body .title {
    color: #199dbe;
	font-size: 1.3em;
    font-weight: 400;
}

.pop-up .body .description {
    flex-grow: 1;
    overflow: hidden;
    font-size: 1.2em;
}

.pop-up .body .description span {
}

.pop-up .body .timestamp {
    text-align: right;
    font-size: 0.9em;
}

