/* MENSAJES */

.warnings {
	
}

.info, .warning, .success, .error {
	padding: 16px 35px 16px 60px;
	background: linear-gradient(to bottom, #fff, #f9f9f9);
	font-size: 14px;
	color: #fff;
	text-shadow: none;
	position: relative;
	/*-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;*/
	overflow: hidden;
}

	.info:before,
	.warning:before,
	.success:before,
	.error:before {
		content: '';
		width: 50px;
  		height: calc(100% + 2px);
  		display: block;
  		position: absolute;
  		top: -1px;
  		left: -1px;
	}

	.warnings .dismiss, 
	.info .dismiss, 
	.warning .dismiss, 
	.success .dismiss, 
	.error .dismiss {
		cursor: pointer;
		position: absolute;
		top: 50%;
		right: 10px;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

.info {
	border: 1px solid #98cce6;
	color: #3a87ad;
}

	.info:before {
		background: url('../imgs/info.png') repeat-y center left;
	}

.warning {
	border: 1px solid #f1daab;
	color: #c09853;
}

	.warning:before {
		background: url('../imgs/warning.png') repeat-y center left;
	}

.success {
	border: 1px solid #d6e9c6;
	color: #3c763d;
}

	.success:before {
		background: url('../imgs/success.png') repeat-y center left;
	}

.error {
	border: 1px solid #e0b1b8;
	color: #b94a48;
}

	.error:before {
		background: url('../imgs/error.png') repeat-y center left;
  		
	}

.loading2 {
	margin: auto;
	width: 28px;
	height: 28px;
	background: url('../imgs/loading2.gif') no-repeat center left;
	background-size: contain;
	display: none;
}