#notifier-wrap {
	position: fixed;
	top: 76px;
	right: 10px;
	width: 280px;
    z-index: 600;
}

@media only screen and (max-width: 767px) {
	#notifier-wrap {
		position: fixed;
		top: 52px;
		right: 5px;
		width: 280px;
	}
}

.notifier-notif {
	background-color: #222;
	color: white;
	font-weight: bold;
	border-radius: 5px;
	padding: 8px 24px 8px 10px;
	position: relative;
	margin-bottom: 12px;
}

.notifier-notif.success {
	background-color: #59ba64;
	color: white;
}

.notifier-notif.warning {
	background-color: #F1C40F;
	color: white;
}

.notifier-notif.error {
	background-color: #E74C3C;
	color: white;
}
.notifier-notif .notifier-close {
	position: absolute;
	top: 8px;
	right: 8px;
	display: block;
	width: 10px;
	height: 10px;
	background: transparent url(/layout/growl-close.png) 0 0 no-repeat;
	cursor: pointer;
}

.notifier-notif .notifier-close:hover {
	background-position: 0 -10px;
}

@media only screen and (max-width: 459px) {
	#notifier-wrap {
		width: auto;
		left: 10px;
	}
}