/*
//==========================================================================================================================
// Notification message styling.
//
// Last modified: 13.04.17
// Author: Romet Saarna (aka TheKuru) http://wizil.ee
//==========================================================================================================================
*/

/* notification message container */
.notification-message {
 color: #fff;
 line-height: 1.4em;
 margin-left: 20px;
 margin-right: 20px;
 margin-top: 10px;
 padding: .7em 1.2em;
 padding-left: 55px;
 background-color: #ffffe0;
 border: 1px solid #e1db8b;
 font-size: 13px;
 font-family: helvetica;
 text-shadow: 1px 0 6px #333;
 box-shadow: 2px 3px 6px #D7D7D7;
}

/* notification message header */
.notification-message-headline {
 font-family: oswald,arial;
 padding-bottom: 10px;
 font-size: 18px;
 font-weight: 600;
}

/* error skin */
.notification-message.notification-message-error {
 background-color: #fc402c;
 border: 1px solid #C91704;
}

/*success skin */
.notification-message.notification-message-success {
 background-color: #2ec23e;
 border: 1px solid #039D14;
}

/* warning skin */
.notification-message.notification-message-warning {
 background-color: #FF8377;
 border: 1px solid #F15C4C;
}

/* notify skin */
.notification-message.notification-message-notify {
 background-color: #29b7ff;
 border: 1px solid #069DE9;
}

/* info skin */
.notification-message.notification-message-info {
 background-color: #fdce09;
 border: 1px solid #DFB400;
}

/* message skin */
.notification-message.notification-message-message {
 background-color: #696969;
 border: 1px solid #4d4d4d;
}

/* font awesom icon on the left */
.notification-message-icon {
 color: white;
 position: absolute;
 left: 25px;
 padding: 4px;
}

/* close button on the right top corner */
.notification-message a.notification-message-close {
 color: #333;
 position: absolute;
 right: 25px;
 font-size: 17px;
 opacity: 0.4;
 padding: 4px;
}
.notification-message a.notification-message-close:hover, a.notification-message-close:focus {
 opacity: 0.6;
}