#notice-container-wrapper {
	position: fixed;
	z-index: 170;
	top: 0;
	right: 0;
	margin: 63px 15px;
}
.notice-wrapper {
	display: none;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 2px 2px 30px #aaa;
	color: #fff;
	text-align: center;
	padding: 48px 30px 16px 80px;
	margin-bottom: 10px;
	max-width: 400px;
	max-height: 200px;	
	text-align: left;
	font-family: 'Raleway', Raleway-Regular, sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.5;
	-webkit-transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-ms-transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.notice-wrapper i.notice-close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 16px;
	cursor: pointer;
}
.notice-wrapper::after {
	position: absolute;
	top: 12px;
	left: 80px;
	font-family: 'Economica', Economica-Regular, sans-serif;
	font-weight: 900;
	font-size: 24px;
}
.notice-wrapper::before {
	position: absolute;
	top: 50%;
	left: 19px;
	transform: translateY(-50%);
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 44px;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'liga';
}
.notice-wrapper.success { background-color: #4d9a8d}
.notice-wrapper.success::after { content: '¡Éxito!'; }
.notice-wrapper.success::before {	content: 'check_circle'; }
.notice-wrapper.warning { background-color: rgb(223,184,27);}
.notice-wrapper.warning::after { content: '¡Aviso!'; }
.notice-wrapper.warning::before {	content: 'warning'; }
.notice-wrapper.error { background-color: #820e0e;}
.notice-wrapper.error::after { content: '¡Error!'; }
.notice-wrapper.error::before {	content: 'cancel'; }
.notice-wrapper.info { background-color: rgb(45,171,209);}
.notice-wrapper.info::after { content: 'Información'; }
.notice-wrapper.info::before {	content: 'info'; }