.jGrowl {
	color: #FFF;
	font: 400 16px "Trebuchet MS", "Helvetica CY", sans-serif;
	position: fixed;
	z-index: 9999;
}
.jGrowl.top-left {
	left: 0;
	top: 0;
}
.jGrowl.top-right {
	right: 0;
	top: 0;
}
.jGrowl.top-center {
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}
.jGrowl.bottom-left {
	left: 0;
	bottom: 0;
}
.jGrowl.bottom-right {
	right: 0;
	bottom: 0;
}
.jGrowl.bottom-center {
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}

.jGrowl-notification,
.jGrowl-closer {
	background-color: #000;
	border: 3px solid #0CF;
	box-sizing: border-box;
	display: none;
	margin: 12px;
	width: 420px;
	word-wrap: break-word;
}
@media (max-width:575px) {
	.jGrowl {
		width: 100%;
	}
	.jGrowl-notification,
	.jGrowl-closer {
		margin: 8px;
		width: calc(100% - 16px);
	}
}

.jGrowl-notification {
	box-shadow: 0 0 4px 2px #0CF;
	font-size: 1.375rem;
	padding: 20px;
	position: relative;
	text-align: left;
}

.jGrowl-notification .jGrowl-header {
	font-weight: 700;
	font-size: .85em;
	margin-bottom: 5px;
}
.jGrowl-notification .jGrowl-close {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	position: absolute;
	right: 2px;
	top: 2px;
	width: 26px;
	height: 26px;
	z-index: 99;
}
.jGrowl-notification .jGrowl-close:hover {
	background: #047;
}
.jGrowl-notification .jGrowl-close::before,
.jGrowl-notification .jGrowl-close::after {
	background: #FFF;
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 50%;
	height: 2px;
}
.jGrowl-notification .jGrowl-close::before {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.jGrowl-notification .jGrowl-close::after {
	transform: translate(-50%, -50%) rotate(45deg);
}

.jGrowl-closer {
	cursor: pointer;
	font-weight: 700;
	font-size: .8em;
	padding: 8px 16px;
	text-align: center;
	transition: .4s;
}
.jGrowl-closer:hover {
	box-shadow: 0 0 4px 2px #0CF;
}

.jGrowl-notification.jGrowl-error {
	border-color: #ff2c2c;
	color: #ff2c2c;
	font-weight: 700;
}
.jGrowl-notification.jGrowl-error .jGrowl-header {
	font-size: 1.2em;
}

/** Hide jGrowl when printing **/
@media print{
	.jGrowl { display: none; }
}