/*#----------------------------------------------------------------------------------------------------
#								   WEB CORE
#------------------------------------------------------------------------------------------------------
##############################################################
#####    Desktop tablet mobil  ( show hide )
##############################################################*/
/*
.desktop{visibility:hidden; display:none}
.tablet{visibility:hidden; display:none;}
.movil{visibility:hidden; display:none}
*/
/*ESCRITORIO Y MAS*/
/*
@media (min-width: 992px){
	.desktop{visibility:visible; display:inherit;}
}
*/
/*TABLET*/
/*
@media (min-width: 768px) and (max-width:991px) {
	.tablet{visibility:visible; display:inherit;}
}
*/
/*MOVIL*/
/*
@media (min-width: 0px) and (max-width:767px) {
	.movil{visibility:visible; display:inherit;}
}
*/
/*##############################################################
#####    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;
}


/*##############################################################
#####    CONTENEDOR MENSAJES 
##############################################################*/
#mensajes {
	position:fixed;
	z-index:65000;
	top:45px;
	right:0px;
	max-width:90%;
	margin-top:10px;
	margin-right:10px;
	white-space: nowrap;
}

@media (max-width: 768px) {
	#mensajes { 
		white-space: normal;
	}
}


#mensaje,#aviso,#error,#informacion {
	width:100%;
	position:relative;
	text-align:left;
}

/*##############################################################
#####    BASIC POPUP
##############################################################*/
.modalcenter {
    position: fixed;
    max-width: 90%;
    max-height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}
.modal {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    background: #fff;
    z-index: 10000;
    text-align: left;
    border-radius: inherit;
    min-width: 300px;
    max-width: 800px;
    width: 100%;
    -webkit-box-shadow: 0px 0px 18px -2px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 0px 18px -2px rgba(0,0,0,0.55);
    box-shadow: 0px 0px 18px -2px rgba(0,0,0,0.55);
}
.modal .modal-content {
    width: 100%;
    padding: 20px;
    position: relative;
}
/*
#popup:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  z-index: -2;
}
#popup:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFF;
  z-index: -1;
}
*/
/*##############################################################
#####    BOTON CERRAR
##############################################################*/
.cerrar-mensajes a{
	display: block;
	position: absolute;
	z-index: 1;
	top: 10px;
	right: 10px;
	font: bold 1em Arial, Helvetica, sans-serif;
	color: #000;
	padding: 4px 8px;
	text-decoration: none;
	background: #fff\9;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: inherit;
	text-shadow: none;
	/*
	float:right;
	right:26px;
	*/
}
.cerrar-mensajes a:hover{color: #000;}

/*##############################################################
#####    MENSAJE
##############################################################*/
.mensaje {
	min-width:250px;
	padding: 10px 40px 15px 30px;
	margin: 3px;
	display: block;
	font-size: 1.077em;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);

	background: url("../images/mensaje_correcto.png") left 7px top 13px no-repeat;
	background-color: rgba(0, 0, 0, 0);
	background-color: #5ebd5e;
	border: 1px solid #43a543;

	/*
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	*/
}
.mensaje a{color:#fff}
.mensaje a:hover{color:#fff}

/*##############################################################
#####    AVISO
##############################################################*/
.aviso {
	min-width:250px;
	padding: 10px 40px 15px 30px;
    margin: 3px;
    font-size: 1.077em;
    color: #333;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);

    background: url("../images/mensaje_aviso.png") left 7px top 14px no-repeat;
    background-color: rgba(0, 0, 0, 0);
    background-color: #ffae10;
    border: 1px solid #f19a1f;

	/*
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	*/
}
.aviso a{color:#333;}
.aviso a:hover{color:#000;}


/*##############################################################
#####    ERROR
##############################################################*/
.error {
	min-width:250px;
	padding: 10px 40px 15px 30px;
    margin: 3px;
    font-size: 1.077em;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);

	background: url("../images/mensaje_error.png") left 7px top 14px no-repeat;
	background-color: rgba(0, 0, 0, 0);
	background-color: #e66454;
	border: 1px solid #df3c28;

	/*
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	*/

}
.error a{color:#fff}
.error a:hover{color:#fff}

/*##############################################################
#####    INFORMACION
##############################################################*/
.informacion {
	min-width:250px;
	padding: 10px 40px 15px 30px;
	margin: 3px;
	display: block;
	font-size: 1.077em;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);

	background: url("../images/mensaje_correcto.png") left 7px top 13px no-repeat;
	background-color: rgba(0, 0, 0, 0);
	background-color: #878787;
	border: 1px solid #898989;

	/*
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	*/
}
.informacion a{color:#fff}
.informacion a:hover{color:#fff}


/*##############################################################
#####   Mensajes Formularios
##############################################################*/
.mensaje.form, .aviso.form, .error.form, .informacion.form {text-shadow: none;	 color: white;background-image:none;	padding: 4px 6px; font-size:0.6875em; line-height:0.6875em;border-radius: 2px;min-width:50px;}
.mensaje.form:before, .aviso.form:before, .error.form:before, .informacion.form:before{content:"";position: absolute; width: 0; height: 0; border-right: 4px solid transparent; border-left: 4px solid transparent; margin: -12px 0 0 0px;}
.mensaje.form:before {border-bottom: 8px solid #5ebd5e;}
.aviso.form:before {border-bottom: 8px solid #ffae10;}
.error.form:before {border-bottom: 8px solid #e66454;}
.informacion.form:before {border-bottom: 8px solid #898989;}




/*##############################################################
#####   Hacks desactivar webkit // formularios y botones en safari 
##############################################################*/
/*input[type='date'], input[type='time'] { -webkit-appearance: none; }*/
/*select { -webkit-appearance: none;   -moz-appearance: none;  line-height:26px; }*/

/*##############################################################
#####    DEBUG
##############################################################*/
#debugger { 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:30000; }

.contenido_debug {min-width: 800px; max-width: 1024px; max-height: 600px; padding: 3px; overflow: auto; border-bottom: 1px solid lightgray; color: goldenrod; display:none; }
.contenido_debug > a, .contenido_debug > a:hover, .contenido_debug > a:visited {font-weight: bold;text-decoration: underline;color:orange; }

.boton_debug {top:6px; right:6px;  text-transform: uppercase; font-size:0.7857em;  font-weight: bold; line-height:0.7857em; padding:4px 5px;border:1px solid #ccc; background-color: black; color:#ccc; width:auto; display:inline-block; margin-right:5px; font-family:Arial, Helvetica, sans-serif; }
.boton_debug :a { color: grey; }
.boton_debug :hover { color: grey; }


/*##############################################################
#####    404
##############################################################*/
.caja_404 {
    width: 100%;
    display: block;
    margin: 0 auto;
    border: 1px solid #dbdbdb;
    background: #fff;
    padding: 40px 15px;
    position: relative;
}
.txt404 {
    font-size: 7em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1em;
    color: #ad0000;
}
.txt404_msg {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.5em;
    color: #333;
    line-height: 1.2em;
}



/*##############################################################
#####    NO select (evita que los textos se puedan seleccionar.)
##############################################################*/
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}


/*##############################################################
#####    SIMPLE LIST
##############################################################*/
ul.simplelist{margin:0px 0px;}
ul.simplelist.nomargin{ margin-bottom:0px;}
ul.simplelist li {margin:0 20px 0 25px; padding:7px 0 7px 0px;}
ul.simplelist li.enlinea{display:inline-block; text-align:center; background:#ededed; padding:10px; margin:5px 0;}
ul.simplelist li a{text-decoration:underline;}

ul.simplelist.verde{color:#385d2d; margin:10px 0; line-height:1.1875em;}
ul.simplelist.verde span{font-size: 0.875em; color:#999999;}

ul.simplelist li.num {list-style-type: decimal}/*números*/
ul.simplelist li.nu0 {list-style-type: decimal-leading-zero}/*números con 0 antes*/
ul.simplelist li.min {list-style-type: lower-latin}/*minúsculas*/
ul.simplelist li.may {list-style-type: upper-latin}/*mayúsculas*/
ul.simplelist li.cua {list-style-type: square;}/*cuadrado*/
ul.simplelist li.pun {list-style-type: disc;}/*círculo relleno*/
ul.simplelist li.cir {list-style-type: circle;}/*círculo vacio*/

.notapie { font-size:0.8em; color: grey }


/*##############################################################
#####    SIMPLE TABLA
##############################################################*/
table.simpletabla { width: 100%; border-collapse: collapse; padding: 8px;  }
/*table.simpletabla {border: 1px solid #C0C0C0}*/
table.simpletabla th { border: 1px solid #000;background-color:#ababab ; padding: 5px; font-size: 0.9em }
table.simpletabla tr { border: 1px solid #000; padding: 5px; font-size: 0.9em }
table.simpletabla td {border: 1px solid #000; padding: 3px;}



/*##############################################################
#####    COOKIES
##############################################################*/

.cookies {width:100%; background:rgba(0,0,0,.85); position:fixed; left:0; bottom:-1px; text-align:center; padding:0; z-index:200; box-shadow:0 -15px 25px -15px rgba(0,0,0,.5); font-size:14px;}
.cookies .cookiemsg{padding:20px; margin:0 35px; position:relative; color:#e5e5e5;   display:block;}
.cookies .cookiemsg .close{position:absolute; top:0px; right:-25px;}

.btncookies{
	background: transparent; color: #ffffff; font-size:13px; padding: 4px 20px; letter-spacing: 0.5px; margin:10px 5px 0px 5px; display:inline-block; outline: none; border:1px solid white;
    -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; text-align:center; position:relative; cursor:pointer; border-radius:4px;
}

.btncookies:hover, .btncookies:focus {color: #000; background: #fff;}
.btncookies.min{padding:2px 4px; line-height:13px;}


@media (max-width:768px){
    .cookies .cookiemsg{margin:0 20px!important; font-size:12px; padding:20px!important}


