
/*##############################################################
#####    DEBUG
##############################################################*/
#debug {
  position: fixed;
  left: 10px;
  bottom: 0px;
  background:#000\9; background-color:rgba(0, 0, 0, 0.8);
  font-size: 13px;
  color: #fff;
  padding: 5px 10px;
  z-index:1000
}

/*__________MENSAJES-WEB__________*/


/*##############################################################
#####    BOTON CERRAR
##############################################################*/

.close {
  float: right;
  font-size: 1em;
  font-weight: bold;
  line-height: 1em;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}


/*##############################################################
#####    MENSAJES 
##############################################################*/
#mensajes {
	position:fixed;
	z-index:30000;
	top:45px;
	right:0px;
	max-width:100%;
	margin-top:10px;
	margin-right:10px;
}

#mensaje,#aviso,#error {
	width:100%;
	position:relative;
	text-align:left;
}
/*##############################################################
#####    MENSAJE
##############################################################*/
.mensaje {
	color:green;
	background: 	#e5eecc url("../images/mensaje_correcto.png") left 3px top 5px no-repeat;
    border: 1px solid green;
	padding: 5px 20px 5px 30px;
	margin: 3px;

	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}

/*##############################################################
#####    AVISO
##############################################################*/
.aviso {
	color:red;
	background: 	#EEE476 url("../images/mensaje_aviso.png") left 3px top 5px no-repeat;
    border: 1px solid orange;
	padding: 5px 20px 5px 30px;
	margin: 3px;

	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;

}

/*##############################################################
#####    ERROR
##############################################################*/

.error {
	color:red;
	background: 	#f6d4d4 url("../images/mensaje_error.png") left 3px top 5px no-repeat;
    border: 1px solid red;
	padding: 5px 20px 5px 30px;
	margin: 3px;

	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}

/*##############################################################
#####    COOKIES
##############################################################*/

.cookieNotice{
	width: 100%; 
	position: fixed; 
	bottom:0px;
	border-top:1px solid #666;
	background: #000;
	opacity: 0.8; filter: alpha(opacity=80);
	z-index: 9999;
	
	line-height: 1.3em;
	font-family: arial;
	left: 0px;
	text-align:center;
}

.cookieNotice p {font-size: 12px; margin:0px; padding:0px; color:#fff;}
.cookieNotice p a {color:#fff; text-decoration:underline}
.cookieNotice p a:hover {color:#fff;}

.cookieNoticeContent{position:relative; margin:auto; padding:15px 10px; max-width:100%; display:block;}
