#Growler {
	position: fixed;
	right: 1.25rem;
	bottom: -6.25rem;
	min-width: 18.75rem;
	z-index: 9999999;
	max-width: 31.25rem;
}

#NotificationsList {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    overflow-y: scroll;
    height: 90vh;
}

#NotificationsList .growler {
	position: relative;
	display: inline-block;
	z-index: 9999999;
	width: 100%;
	opacity: 1.0;
	margin-bottom: 0.625rem;
}

#NotificationsList .nonotify {
    padding-left: 0.6875rem;
    font-size: 1.1875rem;
    opacity: 0.4;	
}

.growler {
	background-color: #f6f7fb;    
	min-height: 6.5625rem;
	min-width: 20.875rem;
	font-size: 1rem;
	color: #000;
	text-align: left;
	border-radius: 0.375rem;
    -webkit-box-shadow: 0rem 0.75rem 1.4375rem 0rem rgba(0,0,0,.2);
    -moz-box-shadow: 0rem 0.75rem 1.4375rem 0rem rgba(0,0,0,.1);
    box-shadow: 0rem 0.75rem 1.4375rem 0rem rgba(0,0,0,.1);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0.0;
}

#Growler.open {
	bottom: 1.25rem;
}

.growler.open {
    opacity: 1.0;
}

.growler .time {
	font-size: 0.8125rem;
	color: #FFF;
	position: absolute;
	top: 0.4375rem;
	right: 0.625rem;
    font-weight: 600;
font-family: "Open Sans";
}

.growler.error .title {
	background-color: #ff104b;
}

.growler.success .title {
	background-color: #03db5c;
}

.growler.warning .title {
	background-color: #ffc103;
}

.growler.info .title {
	background-color: #0971ff;
}

.growler.bug .title {
	background-color: #ff104b;
}

.growler .title {
	padding-left: 0.625rem;
	padding-right: 0.625rem;
	font-size: 0.875rem;
	font-weight: bold;
	color: #FFF;
	line-height: 1.875rem;
	text-transform: uppercase;
	background-color: #03db5c;
	border-top-left-radius: 0.375rem;
	border-top-right-radius: 0.375rem;
    font-weight: 600;
    font-family: 'Open Sans';
    filter: brightness(100%);
}

.growler .subtitle {
    padding-top: 1.0625rem;
    font-size: 0.9375rem;
    font-weight: bold;
    padding-left: 4.6875rem;
    padding-right: 0.625rem;
	overflow: hidden;
}

.growler .content {
	font-size: 0.8125rem;
    font-weight: normal;
    padding-left: 4.6875rem;
    padding-right: 1.25rem;
	margin-top: 0.125rem;
    line-height: 0.875rem;
    text-overflow: ellipsis;
	overflow: hidden;
    font-weight: 400;
	font-family: 'Open Sans';
    color: #434c5e;
    padding-bottom: 0.625rem;
}

.growler .icon {
	width: 3.4375rem;
    height: 3.4375rem;
    background-position: center center;
    background-size: 80%;
    position: absolute;
    left: 0.625rem;
    top: 2.5rem;
}

.growler.error .icon {
    background-image: url(../images/Growl_Error.png);
}

.growler.success .icon {
    background-image: url(../images/Growl_Success.png);
}

.growler.info .icon {
    background-image: url(../images/Growl_Info.png);
}

.growler.warning .icon {
    background-image: url(../images/Growl_Warning.png);
}

.growler.bug .icon {
    background-image: url(../images/Growl_Bug.png);
}

#NotificationsMenu {
	z-index: 979;
	width: 0rem;
	position: fixed;
	top: 0rem;
	bottom: 0rem;
	left: -5rem;
	background-color: var(--offWhite);
    transition: 0.5s;
	opacity: 0.0;
	overflow: hidden;
}

#NotificationsMenu.open {
	width: 23.75rem;
	left: 0rem;
    opacity: 1.0;
	border-right-width: 0.25rem;
	border-right-color: var(--stroke);
	border-right-style: solid;
}

#NotificationsMenu .header.title {
	font-weight: 300;
    font-family: 'Russo One';
    font-size: 1.25rem;
    line-height: 5.25rem;
    color: var(--primary);
    filter: brightness(50%);
    padding-left: 1.25rem;
	text-transform: uppercase;
}