#notifier-box {
	position: fixed;
	top: 10px;
	right: 20px;
	z-index: 9999;
}

div.message-box {
	background: rgb(14 14 14 / 90%);	
	margin: 0 0 10px 0;
	padding: 15px;
	width: 300px;	
	color: #a7a7a7; 
	font-size: 13px; 
	font-family: 'PT Sans Narrow', Ubuntu, Tahoma, Arial, sans-serif;	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

div.message-box:hover {
	background: rgba(0, 0, 0, .9);
}

div.message-box div.success {
	color: #52d325; 
	font-size: 14px; 
	font-family: 'PT Sans Narrow', Ubuntu, Tahoma, Arial, sans-serif;
	margin: 0 0 10px 0;
	font-weight: bold;
    text-transform: uppercase;
}

div.message-box div.error {
    color: #d55d21;
    font-size: 14px;
    font-family: 'PT Sans Narrow', Ubuntu, Tahoma, Arial, sans-serif;
    margin: 0 0 10px 0;
    font-weight: bold;
    text-transform: uppercase;
}

div.message-box a.message-close {
	background: #000 url('../images/message-close.png') center no-repeat;
	width: 15px; height: 15px;
	display: block; float: right;	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;	
	-webkit-opacity: .2;
	-moz-opacity: .2;
	-o-opacity: .2;
	opacity: .2;
}

div.message-box:hover a.message-close {
	-webkit-opacity: .5;
	-moz-opacity: .5;
	-o-opacity: .5;
	opacity: .5;
}

div.message-box a.message-close:hover {
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-o-opacity: 1;
	opacity: 1;
}

div.message-box div.message-body {
	/*overflow: hidden; */
}

div.message-box div.message-body a {
    color: #e9753b;
    text-decoration: none;
    transition: color 0.3s ease, filter 0.3s ease;
}

div.message-box div.message-body a:hover {
    filter: brightness(0.8); 
}

div.message-box div.message-body div.thumb {
	width: 48px;
	height: 48px;
	margin: 0 10px 0 0;
	float: left;
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
}

div.message-box div.message-body div.thumb img {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius:2px;
	border-radius: 2px;
}
