/*####################################################
##													##
## PARRILLACERO5											##
## 													##
## MESSAGES.CSS										##
## 													##
## 													##
## Estilo CSS										##
## Estilos de mensajes al usuario					##
##													##
##													##
####################################################*/

/* MENSAJES */

.warnings {

}

.info, .warning, .success, .error {
	padding: 16px 35px 16px 60px;
	background: linear-gradient(to bottom, #fff, #f9f9f9);
	font-size: var(--font-size-default);
	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('../../images/info.png') repeat-y center left;
	}

.warning {
	border: 1px solid #f1daab;
	color: #af7208;
}

	.warning:before {
		background: url('../../images/warning.png') repeat-y center left;
	}

.success {
	border: 1px solid #d6e9c6;
	color: #3c763d;
}

	.success:before {
		background: url('../../images/success.png') repeat-y center left;
	}

.error {
	border: 1px solid #e0b1b8;
	color: #b94a48;
}

	.error:before {
		background: url('../../images/error.png') repeat-y center left;

	}
