@charset "utf-8";
/* CSS Document */
/*AZUL: #00AAB A, VERDE: #24AA6 0, VERDEAZUL: #0F9D7 */

*{
    margin:0;
    padding:0;
	box-sizing: border-box;
	font-family: 'Roboto', arial;	
}

/*------------------ ESTRUCTURALES -------------------*/

body{
	background-color: #fff;
	font-size: 12px;
}

header{
	background-color: #fff;
	text-align: center;
	padding: 14px;
	overflow: hidden;
} 

header .usuario{
	float: left;
}

header .logout{
	float: right;
}

nav{
	text-align: center;
	padding: 12px;
	overflow: hidden;
	background-color: #0f9d58;
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,1);
} 

nav a{
	margin: 0 12px;
	color: #fff;
}

article{
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	text-align: center;
	padding: 8px;
	color: #0f9d58;	
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.9);
}

article h1{
	color: #0f9d58;	
	font-size: 22px;
	font-family: 'Oswald', arial;
}

section{
	background-color: #eee;
	padding: 20px;
}

footer{
	background-color: #fff;
	border-top: 1px solid #ccc;
	text-align: center;
}

footer p{	
	color: #333;
}

table{
	border-collapse: collapse;	
}

th, td{
	padding: 12px 16px;
	font-family: 'Roboto', arial;
	font-size: 11px;
	text-align: center;
}

thead{
	background-color: #f6f6f6;
	color:#444;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
}

tbody tr{
	border-bottom: 1px solid #ddd;
	transition: 0.1s;
}

tbody tr:hover{
	background-color: #eee;
}

p{
	padding: 10px;
	margin: 10px;
}

i{
	font-size: 20px;
	color: #0f9d58;
	padding: 0 8px;
}

a{
	text-decoration: none;
	color: #333;
}

a:hover{
	text-decoration: underline;
}

input, select, textarea{
	padding: 6px;
	border: none;
	border-bottom: 1px solid #ddd;
	outline: none;
	border-radius: 3px;
	font-size: 12px;
}

input[type=button], button{
	background-color:#666;
	box-shadow: 0px 0px 1px 3px rgba(220,220,220,1);
}

input[type=button]:hover, button:hover{
	background-color:#555;
	box-shadow: 0px 0px 1px 3px rgba(200,200,200,1);
}

input[type=submit]{
	background-color: #0F9D58;
	box-shadow: 0px 0px 1px 3px rgba(216,230,216,1);
}

input[type=submit]:hover{
	background-color: #0D8B4E;
	box-shadow: 0px 0px 1px 3px rgba(159,204,159,1);
}

input[type=button], input[type=submit], button{
	cursor: pointer;
	color: #fff;
	border: none;
	border-radius: 3px;
	outline: none;
	transition: 0.5s;
	font-size: 12px;
}

input[type=search]{	
	background-image:url("../img/lupa.png");
	background-repeat:no-repeat;
	background-position:left 10px top 10px;
	width: 146px;
}

/*------------------ PADDING INPUTS ---------------------*/

input[type=text]{ padding: 11px 9px; }

input[type=email]{ padding: 11px 9px; }

input[type=password]{ padding: 11px 9px; }

input[type=number]{ padding: 11px 9px; }

input[type=date]{ padding: 9.14px 9px; }

input[type=time]{ padding: 8.75px 9px; }

input[type=file]{ padding: 8.02px 9px; }

input[type=button]{ padding: 11px 13px; }

input[type=submit]{	padding: 11px 13px; }

input[type=search]{	padding: 11.5px 10px 11.5px 35px; }

input[type=color]{ padding: 11px 10px; }

button{ padding: 11.2px 10px; }

select{ padding: 10.68px 9px; }

textarea{ padding: 9px 9px; }

/*------------------ IDENTIFICADORES -------------------*/



/*------------------ CLASES -------------------*/

.caja-login{
	background-color: #f1f1f1;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.caja-login form{
	background-color: #fff;
	border-radius: 4px;
	width:28%;
	min-width:370px;
	padding: 20px 30px 10px 30px;
	text-align: center;
	color: #0f9d58;
	box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.75);
	margin: 40px auto;
	border-top:4px solid #0f9d58;
	border-bottom: 4px solid #0f9d58;
}

.caja-login div{
	width: 100%;
}

.caja-login div img{
	width: 40%;	
}

.caja-login div .titulo{
	font-family: 'Oswald', arial;
	font-size: 24px;
}

.caja-login div input{
	width: 100%;
	margin: 8px 0;
	box-sizing: border-box;
}

.login-error{
	color: red;
}

.marco-flotante{
	background-color: rgba(0,0,0,0.6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	display: none;
}

.marco-flotante .caja{
	background-color: #f9f9f9;
	position: fixed;
	top: 20px;
	left: 80px;
	right: 80px;
	bottom: 20px;
	padding: 40px;
	overflow: auto;
}

.table-header{
	background-color: #fff;
	padding: 20px;
	overflow: hidden;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
}

.table-header .left{
	overflow: hidden;
	text-align: left;
	float: left;
}

.table-header .right{
	overflow: hidden;
	text-align: right;
	float: right;
}

.table-header .left input[type=number]{
	border-left:1px solid #ddd;
}

.table-header .left input[type=button]{
	box-shadow: none;
}

.table-header .right input{
	border-left:1px solid #ddd;
	float: right;	
}

.table-header .right input, .table-header .left select{
	width: 146px;
}

.table-section{
	background-color: #fff;
	padding: 0;	
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	overflow-x: auto;
}

.table-footer{
	background-color: #fff;
	padding: 20px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.form-header{
	background-color: #fff;
	padding: 20px;
	border: 1px solid #ccc;
	overflow: hidden;
}

.form-header a{
	float: right;
}

.form-header h2{
	float: left;
	color: #0f9d58;
	padding: 0;
	margin: 0;
}

.form-section{
	background-color: #fff;
	padding: 20px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

.form-footer{
	background-color: #fff;
	padding: 20px;
	border: 1px solid #ccc;
	overflow: hidden;
}

.form-footer input[type="button"], button{
	float: left;
}

.form-footer input[type="submit"]{
	float: right;
}

.form-sms{
	background-color: #fff;
	padding: 20px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	max-height: 400px;
	overflow: auto;
	display: none;
}

.caja-fila-inputs{
	overflow: hidden;
}

.caja-inputs{
	width: 25%;
	float: left;
	padding: 10px;
}

.caja-inputs label{
	display: block;
	margin-bottom: 4px;
}

.caja-inputs input, .caja-inputs select, .caja-inputs textarea{
	width: 100%;
	border-radius: 3px;
}

.caja-inputs input[type=button]{
	background-color: #f1f1f1;
	border: 1px solid #f1f1f1;
	color: #999;
}

.caja-inputs progress{
	width: 100%;
	height: 36px;
}

.pendiente a, .completo a{
	color: #fff;
}

.pendiente{
	background-color: red;
}

.completo{
	background-color: green;
}

/*--------------------- RESPONSIVE ---------------------*/

@media only screen and (max-width: 980px) {

	.caja-login form{
		width: 60%;
	}

	.caja-inputs{
		width: 50%;
	}
}

@media only screen and (max-width: 620px) {

	.caja-login form{
		width: 80%;
	}

	.marco-flotante .caja{
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
	}

	.caja-inputs{
		width: 100%;
	}

	.form-footer input{
		width: 100%;
		margin: 6px 0;
	}
}

/*--------------------- ANIMACIONES ---------------------*/

.animatezoom {
  	animation: animatezoom 0.4s;
}

@keyframes animatezoom {
	from {
		transform: scale(0);
	} 
	to {
		transform: scale(1);
	}
}
	
.animatetop {
  	animation: animatetop 0.7s;
}
  
@keyframes animatetop {
	from {
		transform: translateY(-600px);
	} 
	to {
		transform: translateY(0);
	}
}