
/*
azul:   #00143C
naranja:  #FF8746

/* Generico */

input, textarea, select, button {
	box-sizing: border-box;
}

body {
	font-family: IBM Plex Sans, sans-serif;
	font-size: 17px;
	margin: 0;
}

.w80 {
	width: 80px;	
}

.w150 {
	width: 150px;	
}

.w200 {
	width: 200px;
}

.w90 {
	width: 90px;
}

.ancho100 {
	width:100%;
}

.ancho95 {
	width:95%;
}

.pointer {
	cursor: pointer;
}

.main-menu div {
	padding: 10px;
}

.container {
	/*display: grid;
	grid-template-columns: 100%;
	grid-template-rows: 90px 1fr 60px;
	justify-items: center;
	height: 100%;
	width: 100%;*/
	background: url("../config/fondo-claro.jpg") no-repeat center;
	background-size: cover;
	height: auto;
	background-attachment: fixed;
}

.main-menu {
	color: #00143C;
	font-weight: bold;
}

.main-menu a {
	text-decoration: none;
}

.main-menu a:hover {
	text-decoration: underline;
	color: #FF8746;
}

.content {
	width: 100%;
	max-width: 1300px;
	margin: auto;
}

.input-read {
	background-color: #D3D3D3;
	border: none;
}

.invisible {
	display: none;
}

footer {
	clear: both;
	background-color: #00143C;
	margin: 0;
	padding: 1px;
	border-top: 5px solid #00143C;
}

.copyright {
	text-align: center;
	color: #fff;
}

.borde-rojo {
	border-color: red !important;	
}

/* Header  */

header {
	background-color: #00143C;
	padding: 20px 0;
	overflow: auto;
}

.logo-img {
	float: left;
}
.logo-img a {
	display: inline-block;
	padding: 30px 125px;
	background: url("../config/RepacarLogoTextoHorizontal.svg") no-repeat left;
    background-size: auto;
	background-size: contain;
}

.top_nav {
	float: right;;
}

.top_nav ul {
	list-style: none;
}

.top_nav ul li {
	display: inline-block;
}

.top_nav ul li a {
	text-decoration: none;
	display: inline-block;
	padding: 5px 15px;
	text-transform: uppercase;
    font-size: 14px;
	color: #fff;
	border-bottom:2px solid transparent;
}
.top_nav ul li a:hover, .top_nav ul li a.focus {
	border-bottom:2px solid #fff;
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: ease-in;
}

header+.content {
	padding-top: 40px;
	min-height: 100%;
	height: auto;
}

/* Login */

.container-login {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
}

.content-login {
	font-size: 17px;
	width: 75%;
}

.login-img {
	margin-top: 10px;
	margin-left: 27%;
	margin-right: 27%;
	display: flex;
	justify-content: center;
	background-color: #00143C;
	padding: 25px;
	border-radius: 10px 10px 0 0;
}

.login-div-form {
	margin-left: 27%;
	margin-right: 27%;
	margin-bottom: 60px;
	padding-bottom: 20px;
	padding-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color: white;
	border: solid 1px #c4c4c4;
    border-top-color: rgb(196, 196, 196);
    border-top-style: solid;
    border-top-width: 1px;
	border-top: none;
	border-radius: 0 0 10px 10px;
}

.login-submit {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}

.login-label {
	display: inline-block;
	min-width: 95px;
	text-align: right;
	margin-right: 5px;
}

.login-campo {
	margin: 10px;
}

.login-btn {
	font-size: 14px;
	padding: 3px 10px 3px 10px;
	color: white;
	border: none;
	background-color: #00143C;
	padding: 10px 40px;
    border-radius: 7px;
}

.login-btn:hover {
	color: inherit;
	background-color: #FF8746;
}

.login-input {
	border: solid 1px #00143C;
	padding: 5px;
}

.login-input:hover, .login-input:focus {
	background-color: #FF8746;
}

/* Configuracion app */

.calidades-div, .impropios-div, .materiales-div {
	width: 32%;
	/*min-height: 500px;*/
	float:left;
	margin: 0px 5px;
    box-sizing: content-box;
}

.calidades-div h2, .impropios-div h2, .materiales-div h2, .tituloh2 {
    text-align: center;
    color: #fff;
    background-color: #00143C;
    /*margin: 30px;*/
    margin-bottom: 30px;
    line-height: 1.8em;
    margin-bottom: 0;
    border-radius: 15px 15px 0 0;
    border-bottom: 5px solid #FF8746;
}

.selector_materiales {
    padding: 0 3px;
}

.selector_materiales select {
    padding: 6px 6px;
    border-radius: 5px;
    min-width: 200px;
    font-size: 16px;
	cursor: pointer;
}

.form_div {
    /*margin: 0 30px 30px 30px;*/
    background-color: rgba(255,255,255,.85);
    border-radius: 0 0 15px 15px;
    /*min-height: 600px;*/
	padding-top: 30px;
	padding-bottom: 30px;
	box-shadow: 0 15px 20px #000;
	overflow: auto;
	margin-bottom: 30px;
}

.app-table {
	margin: auto;
	position: relative;
}

.app-table tr td {
	padding: 5px;
}

.app-table input {
	padding: 5px 10px 5px 10px;
}
.input-des {
    width: 100%;
}
.mensaje .verde {
    padding: 30px;
    text-align: center;
    background-color: #5dee9aed;
    margin: 0 30px 30px;
}
.mensaje .rojo {
    padding: 30px;
    text-align: center;
    background-color: #b71a1ad1;
    margin: 0 30px 30px;
	color: #fff;
}

.rojo {
	background-color: #b71a1ad1;
	color: #fff;
}

.input-id {
	text-align: center;
	width: 70px;
	margin: 0px 5px 0px 2px;
	padding: 6px;
}

#body_table td {
	padding: 5px;
}

.td-foot span {
	margin-left: 10px;
}

.td-foot button {
	margin-top: 30px;
}

.input-mod {
	background-color: rgba(255, 135, 70, .7);
}
	
.app-table span {
	color: #00143C;
}

.app-table span:hover {
	color: #FF8746 !important;
}

.td-foot button {
	font-size: 14px;
	padding: 10px 30px 10px 30px;
	color: white;
	border: none;
	background-color: #00143C;
	text-align: center;
	display: block;
	margin: auto;
	width: 100%;
}

.td-foot button:hover {
	color: inherit;
	background-color: #FF8746;
}

.td-foot {
    padding-top: 20px;
}

/* ver registros */

.ver-label {
	text-align: left;
	margin-right: 15px;
	margin-bottom: 10px;
}

.ver-input {
	margin-bottom: 10px;
}

.ver-buscador {
	background-color: rgba(255,255,255,.85);
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 15px;
    box-shadow: 0 0 20px #000;
	max-width: 100%;
}	

.ver-caja {
    width: 40%;
	overflow: auto;
    margin: auto;
}

.ver-buscador #frm input, .ver-buscador #frm select, .ver-buscador #frm textarea {
	width: 100%;
	display: inline-block;
	padding: 5px;
	border: 1px solid #c4c4c4;
}

.ver-button button, .as-bus-button button, .as-button button {
    background-color: #00143C;
    color: #fff;
    padding: 8px 30px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    margin: auto;
    margin-top: auto;
    margin-bottom: auto;
    display: block;
    text-align: center;
    border-radius: 4px;
    margin-top: 25px;
    margin-bottom: 35px;
}

.ver-button button:hover, .as-bus-button button:hover, .as-button button:hover {
	background-color: #FF8746;
    color: inherit;
	cursor: pointer;
}

.ver-grid table {
	border-collapse: collapse;
	margin: auto;
}

.ver-grid table td, .ver-grid table th {
    padding: 5px 10px;
}

.ver-grid table,  .ver-grid table tr, .ver-grid table td, .ver-grid table th {
	border-color: #c4c4c4;
}

.ver-fotos:hover img {
	cursor: pointer;
}

.ver-foto {
	max-width: 50px;
	margin-right: 2px;
}

.fecha-ini {
	float: left;
	width: 50%;
}
.fecha-fin {
	float: left;
	width: 50%;
}

.ver-fechas {
	width:100%;
}

#miVentana {
	position: fixed; 
	width: 100%; 
	height: 100%; 
	top:0; left:0; 
	background-color: rgba(0,0,0,.5); 
	display:none; 
	overflow: hidden; 
	justify-content: center; 
	z-index: 600;
}

#fotogrande {
	display: inline-block; 
	width:100%; 
	max-width:900px; 
	height: auto; 
	z-index: 601;
    border-radius: 5px;
	margin-top: 15%;
}

.contenedor-foto {
	position: relative;
}

.boton-cerrar {
    position: absolute;
    right: 15px;
	top: 15px;
    background: #fff;
    padding: 0;
	border-radius: 30px;
    cursor: pointer;
	font-size: 35px;
	z-index: 1000;
}
.boton-cerrar:hover {
	background-color: #000;
	color: #fff;
}

.rotar-img {
	position: absolute;
	top: 15px;
	z-index: 999;
}

.rotar-img .mirror {
	-webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -moz-transform: matrix(-1, 0, 0, 1, 0, 0);
    -o-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.rot {
	background-color: white;
    border: 2px solid #000;
    border-radius: 30px;
    padding: 5px 20px;
    font-size: 15px;
}

.rot:hover {
	background-color: #000;
	color: #fff;
	cursor: pointer;
}

.rot-sum {
	margin-right: 10px;
}

.rot-90{
	transform: rotate(90deg);
}
.rot-180{
	transform: rotate(180deg);
}
.rot-270{
	transform: rotate(270deg);
}

/* asociados */

.aso-buscador, .aso-lista, .aso-div {
	background-color: rgba(255,255,255,.85);	
}

#bus_frm {
    text-align: center;
}

.as-bus--label {
    line-height: 1.5em;
    margin-bottom: 7px;
}

.as-bus-input {
	margin-bottom: 10px;
}

#crea_user, #crea_centro {
    text-align: center;
    margin: auto;
	border-collapse: collapse;
}

#crea_user .fas.fa-check, #crea_centro .fas.fa-check {
	color: green;
}

#crea_user .fas.fa-times, #crea_centro .fas.fa-times {
	color: red;
}

#crea_user th, #crea_user td, #crea_centro th, #crea_centro td {
    padding: 10px 35px;
}

#crea_user thead, #crea_centro thead {
    border-bottom: 1px solid gray !important;
}

.aso-lista ul {
	list-style: none;
}

.aso-lista ul li {
    
}

.aso-lista ul li:hover {
    background-color: #d2d1d1;
}

.aso-lista ul li a {
	text-decoration: none;
    min-height: 35px;
    display: inline-block;
    padding: 8px 10px 0px 10px;
	color: #2f2e2e;
}

.aso-lista ul li a:hover {
	color:#FF8746;
}

.aso-lista #aso-borrar {
	margin-right: 15px;
}

.form_div_2 {
	padding: 0 30px 30px 30px !important;
}

.form_div_2 .tituloh2 {
	margin: 0 -30px 40px -30px;
}

.form_div_2 label {
    padding: 11px 0px;
    display: block;
}

.form_div_2 #frm {
	width: 50%;
	margin: auto;
}

#frm_user , #frm_centro {
    background-color: rgb(255,255,255);
    width: 350px;
    text-align: center;
    padding: 10px 0 5px;
    border-radius: 25px;
    margin-top: 20%;
}

#user-crear:hover {
	color: #FF8746;
}

/* Clientes */

.btn-importar {
	display: inline-block !important;
	margin-left: 15px !important;
}

#frm_imp {
	margin: auto;
	text-align: center;
}

/******* mediaqueries ********/
@media screen and (max-width: 1366px) {
	header {
		padding-left: 20px;
		padding-right: 20px;
	}

}
@media screen and (max-width: 1024px) {
	.calidades-div, .impropios-div, .materiales-div {
		float: none;
		width: 50%;
		margin: 0 auto;
	}
	.selector_materiales select {
		display: block;
		margin: auto;
	}
}
@media screen and (max-width: 840px) {
	.login-img {
		margin-left: auto;
		margin-right: auto;
	}
	.login-div-form {
		margin-left: auto;
		margin-right: auto;
	}
	.login-label {
		text-align: center;
		margin-right: 0px;
		width: 100%;
	}
	.login-input {
		margin: auto;
		display: block;
	}
	.logo-img {
		float: none;
		margin: auto;
		width: 235px;
	}
	.top_nav {
		float: none;
	}
	.top_nav ul li {
		display: block;
		width: 100%;
		text-align: center;
	}
	.ver-buscador {
		width: 80%;
		margin-right: auto;
		margin-left: auto;
	}
	.ver-caja {
		width: 80%;
	}
	.calidades-div, .impropios-div, .materiales-div {
		float: none;
		width: 70%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 530px) {
	.calidades-div, .impropios-div, .materiales-div {
		float: none;
		width: 90%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 410px) {
	.fecha-ini {
		float: none;
		width: 100%;
	}
	.fecha-fin {
		float: none;
		width: 100%;
	}	
}

@media screen and (min-width: 410px) {
	#fechaini, .ver-input #usuario {
		width: 98% !important;	
	}
}







