﻿@charset "utf-8";
/* CSS Document */

body {
	/*QUITARLE EL MARGEN QUE TIENE EL BODY MENOS EL MARGEN DE ARRIBA*/
	margin:50px 0 0 0;
	/*Para poner la imagen de fondo en la pantalla completa, y no en la capa contenedor solo:*/
	/*background-image:url("/imagenes/inicio.jpg");*/
	/*Si queremos dejar la imagen de fondo en la capa contenedor, pero poner el fondo/body en un color oscuro:*/
	/*background-color:#003352;*/
	
	/*Para que no se repita la imagen, debemos usar background, no background-image*/
	/*center y fixer center creo que la centran horizontal y verticalmente*/
	background:url("/imagenes/pantalla_index.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/*ESTILOS PARA EL PLACEHOLDER*/
::-webkit-input-placeholder { /* Edge */
  color:#aaaaaa;
  font-style:italic;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:#aaaaaa;
  font-style:italic;
}

::placeholder {
  color:#aaaaaa;
  font-style:italic;
}

textarea {
	width:890px;
	height:200px;
	border: 2px solid #999;
	box-shadow: 0px 5px 10px 0px;
	border-radius:15px;
	background:#ffffff;
	font-size:30px;
	/*EVITAR PADDING EN IPHONES*/
	padding:0px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	resize:none;
}

/*OCULTAR LOS SCROLLBARS*/
/* Hide scrollbar for Chrome, Safari and Opera */
select::-webkit-scrollbar {
  display: none;
}

/*HACER QUE EL INPUT FILE SEA LA IMAGEN*/
input[type="file"] {
	display:none;
	/*width:60px;*/
	width:80px;
	overflow:hidden;
}

/* Hide scrollbar for IE, Edge and Firefox */
select {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}


/*EL FONDO PARA TODAS LAS PANTALLAS MENOS EL DEL INDEX*/
.fondo_principal {
	background:url("/imagenes/pantalla_principal.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
}

.fondo_partes {
	background:url("/imagenes/pantalla_partes.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
}

.fondo_archivos {
	background:url("/imagenes/pantalla_archivos.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
}

.fondo_ajustes {
	background:url("/imagenes/pantalla_ajustes.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
}

.fondo_control_laboral {
	background:url("/imagenes/pantalla_laboral.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
}

.fondo_consultas {
	background:url("/imagenes/pantalla_consultas.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
}

.contenedor {
	float: none;
	margin-right: auto;
	margin-left: auto;
	width:990px;
	font-size:30px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	position:relative;
}

.logo {
	width:500px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:50px;
	display:block;
}

/*ESTILOS PARA INICIO DE SESIÓN*/
.caja {
	/*height: 250px;*/
	width: 500px;
	/*padding: 13px 24px 46px;*/
	font-weight: normal;
	overflow: hidden;
	background: #fff;
	border-radius:20px;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
	box-shadow: 0 1px 3px rgba(0,0,0,0.13);
	margin-left: auto;
	margin-right: auto;
	color: #777;
	margin-bottom: 10px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	opacity:0.8;
	padding-top:50px;
	padding-bottom:50px;
}

.caja .recordar {
	width:auto;
	float:left;
	margin-top:20px;
	/*margin-left:20px;*/
}

.caja .recordar input {
	width: 35px;
	height: 35px;
	float:left;
	/*EVITAR PADDING EN IPHONES*/
	padding:0px;
}

.button
{
	float:left;
	background-color: #1E1C77;
	color: white;
	cursor: pointer;
	font-size: 30px;
	text-align:center;
	padding-top:10px;
	padding-bottom:10px;
	margin-top:30px;
	margin-bottom:20px;
	width:438px;
	box-shadow: 0px 5px 10px 0px #13636C;
	border-radius:15px;
	font-size:30px;
	height:42px;
	-webkit-appearance: none;
}

.caja input[type="button"] {
	display:none;
}
.caja input[type="button"]:hover {
	display:none;
}

.contenedor .contenido {
	width:inherit;
	/*Quitamos la imagen de fondo de la capa contenedor si la queremos de fondo del body*/
	/*Para poner fondo de color la descomentamos*/
	/*background-image:url("/imagenes/fondo2.jpg");*/
	float:left;
	
	/*Con el HEIGHT=100VH hacemos que ocupe toda la altura
	height:100vh;*/
}

/*MSG DE ERROR PARA EL INDEX*/
.error {
	width: 496px;
	padding: 13px 0px 13px 0px;
	overflow: hidden;
	background: #fff;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
	box-shadow: 0 1px 3px rgba(0,0,0,0.13);
	margin-left: auto;
	margin-right: auto;
	color: #777;
	font-size: 20px;
	font-family:Verdana, Geneva, sans-serif;
	border-left: 4px solid #dd3d36;
	color: #444444;
	font-weight: normal;
}

.contenedor .contenido .botones_contenido {
	width:928px;
	height:196px;
	text-align:center;
	border-radius:20px;
	margin-bottom:20px;
	margin-top:20px;
	display:block;
	margin-left:auto;
	margin-right:auto;
	text-decoration:none;
	line-height:196px;
	color:#ffffff;
	/*LETRA MAS GRANDE*/
	font-size:75px;
	/*Y gruesa*/
	font-weight:700;
	/*TRANSPARENCIA EN LOS BOTONES*/
	opacity: 0.9;
}

/*COLORES DE LOS BOTONES DE CONTENIDO*/
.contenedor .contenido .boton_azul {
	background-color:#1E1C77;
}

.contenedor .contenido .boton_gris {
	background-color:#948984;
}

.contenedor .contenido .boton_blanco {
	background-color:#FFFFFF;
	color:#1E1C77;
}

.contenedor .contenido .boton_seccion {
	/* Si queremos que el botón de dentro del título de la sección dentro de la sección sea diferente, en este caso rojo y más extrecho*/
	background-color:red;
	height:120px;
	line-height:120px;
}

/*ESTILOS PARA EL CONTENIDO EN BLANCO*/
.contenedor .contenido_blanco {
	width:950px;
	background:#ffffff;
	float:left;
	margin:20px;
	border-radius:20px;
	padding-bottom:30px;
	opacity: 0.9;
}

.contenedor .contenido_blanco .seccion_botones_accion {
	/*width:auto;*/
	width:inherit;
	float:left;
	/*padding:10px;*/
	padding-top:10px;
	padding-bottom:10px;
}

.contenedor .contenido_blanco .seccion_botones_accion img {
	width:100px;
	margin-left:240px;
}

/*BOTONES DE ACEPTAR Y CANCELAR*/
.contenedor .contenido_blanco .botones_archivo {
	width:inherit;
	margin-top:20px;
	float:left;
}

.contenedor .contenido_blanco .botones_archivo .boton_aceptar {
	float:right;
	width:100px;
	padding:20px;
}

.contenedor .contenido_blanco .botones_archivo .boton_cancelar {
	float:left;
	width:100px;
	padding:20px;
}

/*OFRMATO PARA LOS TITULARES*/
.titular1 {
	font-size:45px;
	color:#1E1C77;
	text-align:center;
	font-weight:700;
	padding-top:30px;
}

/*PARA LOS A HREF QUITAR SUBRAYADO*/
a {
	text-decoration:none;
}

/*FORMATO PARA LOS CAMPOS*/
/*LOS TAMAÑOS DE LOS CAMPOS LOS DEFINIMOS EN EL PROPIO PHP CON LA PROPIEDAD STYLE*/
.formato_campo, .formato_campo_trabajos {
	margin-left:25px;
	margin-top:20px;
	float:left;
	font-size:30px;
}

.formato_campo_trabajos {
	width:inherit;
	float:left;
	border:none;
	font-weight:normal;
}

.formato_campo_trabajos img {
	float:right;
	height:80px;
}

/*PARA EL CUADRO DONDE SE AÑADEN LAS LINEAS DE MATREIAL*/
.formato_campo_trabajos .linea_add {
	width:330px;
	margin-left:auto;
	margin-right:auto;
	line-height:80px;
}

/*PARA EL CUADRO DONDE SE AÑADEN LAS FOTOS DEL MANTENIMIENTO*/
.formato_campo_trabajos .linea_foto, .formato_campo_trabajos .linea_foto_despues {
	width:505px;
	margin-left:auto;
	margin-right:auto;
	/*line-height:60px;*/
	line-height:80px;
}

.formato_campo_trabajos .linea_foto_despues {
	margin-top:20px;
}

.tabla_sin_formato, .tabla_sin_formato table {
	width:100%;
	/*clear:both;*/
	float:left;
	border:none;
	margin-top:15px;
	border-spacing:30px;
}

.tabla_sin_formato table th {
	font-weight:normal;
	font-size:28px;
}

.formato_campo input[type="number"], .formato_campo input[type="password"], .formato_campo input[type="text"], .formato_campo input[type="date"], .formato_campo input[type="time"], .formato_campo select, .anchura_tercio input[type="text"] {
	border: 2px solid #999;
	box-shadow: 0px 5px 10px 0px;
	border-radius:15px;
	font-size:30px;
	float:left;
	height:42px;
	width:inherit;
	-webkit-appearance: none;
	background:#ffffff;
	/*EVITAR PADDING EN IPHONES*/
	padding:0px;
	padding-left:5px;
}

.formato_campo select {
	display:block;
	line-height:42px;
	height:42px;
	-webkit-appearance: none;
	background:#ffffff;
}

.formato_campo textarea, .formato_campo_trabajos textarea {
	/*height:200px;*/
	height:150px;
	width:890px;
	-webkit-appearance: none;
	background:#ffffff;
}

/*PONER FORMATO A TODOS LOS TIPOS DE INPUTS*/
.formato_campo_trabajos input[type="number"], .formato_campo_trabajos input[type="text"], .formato_campo_trabajos input[type="date"], .formato_campo_trabajos input[type="time"], .formato_campo_trabajos select {
	border: 2px solid #999;
	box-shadow: 0px 5px 10px 0px;
	border-radius:15px;
	font-size:30px;
	float:left;
	height:60px;
	width:inherit;
	-webkit-appearance: none;
	background:#ffffff;
	/*EVITAR PADDING EN IPHONES*/
	padding:0px;
}

/*PONER EL ESTILO EN LOS SELECTS DE LAS TABLAS CON FORMATO*/
.table select, .table input[type="date"] {
	background:#292B2C;
	height:85px;
	font-size:30px;
	float:left;
	border:none;
	font-weight:700;
	-webkit-appearance: none;
	/*EVITAR PADDING EN IPHONES*/
	padding:0px;
}

.table select {
	color:#FFF;
	width:95%;
}

/*BOTONES ESTADO*/
.estado_pendiente, .estado_presupuestar, .estado_finalizado, .estado_porcontestar, .estado_aceptado {
  width:150px;
  height:50px;
  margin:auto;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  line-height:50px;
  text-transform: uppercase;
  float: inherit;
  font-size:16px;
  font-weight:700;
}

/*Todos el mismo color de texto*/
.estado_pendiente a, .estado_presupuestar a, .estado_finalizado a, .estado_porcontestar a, .estado_aceptado a {
  color: #FFF;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.estado_pendiente {
	/*ROJO*/
  background-color: #F93154;
}
.estado_presupuestar {
	/*AMARILLO*/
  background-color: #FFA900;
}
.estado_finalizado {
	/*VERDE*/
  background-color: #00B74A;
}
.estado_porcontestar {
	/*GRIS*/
  background-color: #616161;
}
.estado_aceptado {
	/*AZUL*/
  background-color: #1266F1;
}
.estado_pendiente:hover, .estado_presupuestar:hover, .estado_finalizado:hover, .estado_porcontestar:hover, .estado_aceptado:hover {
  opacity: 0.50;
  -moz-opacity: .50;
  filter:alpha (opacity=50);
  cursor:pointer;
}

/*PARA LOS BOTONES DE ESTADO CENTRADO*/
.boton_centrado {
	width:400px;
	margin-left:auto;
	margin-right:auto;
	float:none;
	height:60px;
	margin-top:40px;
	line-height:60px;
	cursor:pointer;
	font-size:30px;
}

/*EL DIV PARA FILTRAR SUS PROPIAS CLIENTES O TODAS*/
.parrafo_ver_todos {
	text-align:center;
	width:inherit;
	float:left;
	font-size:24px;
	margin-top:20px;
	margin-bottom:-20px;
}

/*PARA EL ENLACE DE VER TODOS O LOS SUYOS PROPIOS*/
.parrafo_ver_todos a:link, .parrafo_ver_todos a:hover, .parrafo_ver_todos a:active, .parrafo_ver_todos a:visited {
	color:#F00;
}

/*BARRA DE DESPLAZAMIENTO*/
.barra_desplazamiento {
	overflow:scroll;
	height:620px;
	width:880px;
	margin-top:10px;
}

/*FORMATO TEXTO SWEET ALERT*/
.texto_sweet_alert {
	font-size:60px;
}

/*FORMATO PARA LA LINEA AL AÑADIR MATERIAL/MAQUINARIA (PANTALLA PARTES)*/
.cuadro_linea_add {
	border: 2px solid #999;
	box-shadow: 0px 5px 10px 0px;
	border-radius:15px;
	min-height:60px;
	background:#CCC;
	padding:5px;
	margin-left:25px;
	margin-top:20px;
	float:left;
	/*font-size:30px;*/
}

/*FORMATO PARA LA LINEA AL AÑADIR MATERIAL/MAQUINARIA (PANTALLA PARTES)*/
.cuadro_linea_add table td {
	height:70px;
	font-size:30px;
}

/*FORMATO PARA LA LINEA AL AÑADIR MATERIAL/MAQUINARIA (PANTALLA PARTES)*/
.cuadro_linea_add input, .cuadro_linea_add textarea {
	border: none;
	float:left;
	background:#CCC;
	font-size:28px;
	margin-right:10px;
	resize:none;
	height:32px;
	vertical-align:middle;
	overflow:hidden;
	cursor:pointer;
	/*EVITAR PADDING EN IPHONES*/
	padding:0px;
}

/*FORMATO PARA LA LINEA AL AÑADIR MATERIAL/MAQUINARIA (PANTALLA PARTES)*/
.cuadro_linea_add img {
	width:60px;
	display:block;
	margin-left:auto;
	margin-right:auto;
}

/*FORMATO PARA LA LINEA AL AÑADIR MATERIAL/MAQUINARIA (PANTALLA PARTES)*/
.add_observacion {
	width:236px;
	height:32px;
	box-shadow:none;
}

/*BOTON ACEPTAR*/
.boton_aceptar_input {
	margin-top:40px;
	width:inherit;
	float:left;
}
.boton_aceptar_input input {
	width:250px;
	font-size:40px;
	font-weight:700;
	text-align:center;
	border-radius:3px;
	color:#FFF;
	border:none;
	margin-left:auto;
	margin-right:auto;
	line-height:65px;
	display:block;
	background:#008000;
}

/*FORMATO DE LAS TABLAS DE CONSULTAS (PANTALLA CONSULTAS)*/
.tabla_consultas {
	width:100%;
	font-family:Arial,Helvetica,sans-serif;
	font-size:12px;
	color:#000;
	margin-top:10px;
	float:left;
}

/*FORMATO DE LAS TABLAS DE CONSULTAS EN ENCABEZADO (PANTALLA CONSULTAS)*/
.tabla_consultas .encabezados {
	font-size:14px;
	font-weight:bold;
	background-color:#DDD;
	height:30px;
	text-align:left;
}

/*FORMATO DE LAS TABLAS DE CONSULTAS EN LAS FILAS (PANTALLA CONSULTAS)*/
.tabla_consultas .filas td {
	border-bottom:1px solid #CCC;
	padding-top:10px;
	text-align:left;
	font-weight:bold;
	/*background-color:#D78E98;*/
}

/*FORMATO DE LAS TABLAS DE CONSULTAS EN LA ETIQUETA IZQUERDA (PANTALLA CONSULTAS)*/
.tabla_consultas .celda_etiqueta {
	border-bottom:1px solid #CCC;
	padding-top:15px;
	font-size:14px;
	text-align:left;
}

/*FORMATO DE LAS TABLAS DE CONSULTAS EN LAS CELDAS DE COSTES TOTALES (PANTALLA CONSULTAS)*/
.tabla_consultas .celda_costes {
	background-color:#DDD;
	border-bottom:1px solid #CCC;
	padding-top:15px;
	color:#009;
	text-align:right;
}

/*FORMATO DE LAS TABLAS DE CONSULTAS EN LA CELDA DE TOTAL COSTE (PERSONAL+MATERIAL+MAQUIANRIA) (PANTALLA CONSULTAS)*/
.tabla_consultas .celda_total_costes {
	background-color:#DDD;
	border-bottom:1px solid #CCC;
	padding-top:15px;
	color:#900;
	text-align:right;
}

/*FORMATO DE LAS TABLAS DE CONSULTAS VACIAS (PANTALLA CONSULTAS)*/
.tabla_consultas_vacia {
	width:100%;
	height:30px;
	font-family:Arial,Helvetica,sans-serif;
	font-size:14px;
	color:#000;
	font-weight:bold;
	background-color:#DDD;
	margin-top:40px;
	float:left;
}

/*FORMATO DE LAS TABLAS DE CONSULTAS VACIAS (PANTALLA CONSULTAS)*/
.tabla_consultas_vacia td {
	text-align:center;
}

/*CIRCULOS DE BOTONES*/
.boton_circulo {
	width:50px;
	height:50px;
	border-radius:25px;
	cursor:pointer;
}

/*COLOR DE CIRCULOS DE BOTONES PARA LOS OBRAS ACTIVAS/INACTIVAS*/
.boton_circulo_obra_activo {
	background:#00B74A;
}

/*COLOR DE CIRCULOS DE BOTONES PARA LOS OBRAS ACTIVAS/INACTIVAS*/
.boton_circulo_obra_inactivo {
	background:#F93154;
}