#notificationContainer {
    font-size: 16px;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 0;
    color: white;
    z-index: 52;
}
#notificationBody {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #58458f;
	background: linear-gradient(135deg, rgba(68,49,123,1) 50%, rgba(88,69,143,1) 50.1%);
	background-position: 50%;
    background-size: 230% 100%;
    z-index: 52;
    width: 100%;
    padding: 5px 5px 41px 5px;
    position: relative;
    top: 0;
	cursor: alias;
}

.notification-animation {
	-webkit-animation: notificationAnimation 5s linear;
    -moz-animation: notificationAnimation 5s linear;
    animation: notificationAnimation 5s linear;
	animation-fill-mode: forwards;
}
@-webkit-keyframes notificationAnimation {
    0%{background-position:100% 0%}
    100%{background-position:0% 0%}
}
@-moz-keyframes notificationAnimation {
    0%{background-position:100% 0%}
    100%{background-position:0% 0%}
}
@keyframes notificationAnimation { 
    0%{background-position:100% 0%}
    100%{background-position:0% 0%}
}

#pop-notification-background {
	
}

#notificationBodyInnerBounds {
    width: 100%;
    max-width: 500px;
    margin-top: 15px;
}

.pop-notification-flex-row {
	display: flex;
	flex-direction: row;
}


.pop-notification-flex-column {
	display: flex;
	flex-direction: column;
    width: calc(100% - 60px);
}

#pop-notification-image {
    background-image: url('/wordvoyance/res/img/icon_notification.png');
    width: 60px;
    height: 60px;
    background-size: contain;
}

#pop-notification-title {
    font-style: italic;
    padding: 0px 10px 5px 10px;
}

#pop-notification-message {
    padding: 5px 10px;
}

#pop-notification-close-button {
    background-color: #32245A;
    padding: 6px 20px;
    border-radius: 10px;
	cursor: pointer;
	position: absolute;
	bottom: 5px;
	z-index: 52;
}

#toastErrorLog {
	display: flex;
	flex-direction: column;
	z-index: 9999;
	position: absolute;
	top: 0;
	right: 0;
	align-items: end;
}

.errorLogToastEntry {
    background-color: white;
    border-left: 3px solid red;
    margin: 5px;
    padding: 5px 10px;
    min-height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    color: red;
	box-shadow: 0px 4px 6px #00000066;
}

.errorLogToastCloseButton {
    background-color: red;
    color: white;
    display: flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-left: 5px;
}