.cla-notifications-container {
	position:fixed;
	z-index:10000;
	bottom:0;
	right:0;
	left:0;
}
.cla-notifications-fullscreen {
	top:0;
	background-color:#ffffff;
}
.admin-bar .cla-notifications-fullscreen {
	top:32px;
}
.cla-notifications {
	margin:0 auto;
	box-sizing:border-box;
	max-width:calc(100% - 6rem);
}
.cla-notifications-fullscreen .cla-notifications {
	display:flex;
	flex-direction:column;
	height:100%;
}
.cla-notification {
	position:relative;
	margin:0 0 0.5rem 0;
	padding:1.5rem 6rem 1.5rem 1.5rem;
	box-sizing:border-box;
	display:block;
	max-height:100rem;
	background-color:#fff;
	animation-fill-mode:both;
	animation-duration:300ms;
	animation-name:cla-notification-on;
	overflow:hidden;
	box-shadow:0 0 1.5rem 0 rgba(0, 0, 0, 0.2);
}
.cla-notification:nth-child(2) {
	animation-delay:200ms;
}
.cla-notification:nth-child(3) {
	animation-delay:400ms;
}
.cla-notification:nth-child(4) {
	animation-delay:600ms;
}
.cla-notification:last-child {
	margin:0;
}

.cla-notification-notice,
.cla-notification-notice a,
.cla-notification-notice a:hover {
	color:#1E4D2B;
}
.cla-notification-notice {
	border-left:0.5rem solid #C8C372;
}

.cla-notification-warning,
.cla-notification-warning a,
.cla-notification-warning a:hover {
	color:#232323;
}
.cla-notification-warning {
	border-left:0.5rem solid #ed6923;
	background-color:#fff2ec;
}

.cla-notification-emergency {
	padding:10rem;
	display:flex;
	flex-direction:column;
	flex-grow:1;
	max-height:none;
	font-size:4rem;
	font-weight:bold;
	text-align:center;
	justify-content:center;
	color:#A02816;
}

.cla-notification-message {
	display:block;
	
}

.cla-notification.hide {
	margin:0;
	padding:0;
	display:block !important;
	max-height:0;
	animation-delay:0;
	animation-name:cla-notification-off;
	pointer-events:none;
	visibility:hidden;
}
.cla-notification span.dashicons-before {
	display:inline-block;
}
.cla-notification span.dashicons-before:before {
	margin-right:0.5rem;
}
.cla-notification .cla-notification-dismiss {
	position:absolute;
	top:0.5rem;
	right:0.5rem;
	border:none;
	border-radius:0;
	padding:0 0 0 0.3rem;
	display:block;
	width:3rem;
	height:3rem;
	color:inherit;
	text-align:center;
	text-decoration:none;
	background-color:transparent;
}
.cla-notification .cla-notification-dismiss:focus,
.cla-notification .cla-notification-dismiss:hover {
	cursor:pointer;
	color:#fff;
	background-color:#1E4D2B;
}
.cla-notification-warning .cla-notification-dismiss:focus,
.cla-notification-warning .cla-notification-dismiss:hover {
	background-color:#ed6923;
}
.cla-notification a {
	text-decoration:underline;
}
.cla-notification a:hover {
	text-decoration:none;
}

@keyframes cla-notification-on {
	0% {
		max-height:0;
		opacity:0;
		transform:translateY(5rem);
		visibility:hidden;
	}
	1% {
		max-height:100rem;
	}
	100% {
		opacity:1;
		transform:translateY(0);
		visibility:visible;
	}
}
@keyframes cla-notification-off {
	0% {
		opacity:1;
		transform:translateY(0);
		visibility:visible;
		max-height:100rem;
	}
	99% {
		max-height:100rem;
	}
	100% {
		max-height:0;
		opacity:0;
		transform:translateY(5rem);
		visibility:hidden;
	}
}

@media (min-width:1920px) {
	.cla-notification-emergency {
		font-size:6rem;
	}
}
@media (min-width:2560px) {
	.cla-notification-emergency {
		font-size:8rem;
	}
}
@media (min-width:3840px) {
	.cla-notification-emergency {
		font-size:10rem;
	}
}