﻿@charset "utf-8";
/* CSS Document */

/* ---------- GENERAL ---------- */

* {
	margin: 0;
	padding: 0;
}

body {
	background: #EFEFEF;
	min-width: 600px;
	width: auto !important;
}

#main {
	position: static;
	padding-bottom: 100px;
	width: 80vw;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#header {
	width: 100vw;
	position: static;
	overflow: hidden;
}

#cabecera {
	background-color: #0d6e00;
	border-radius: 20px 20px 0 0;
	color: white;
	font-size: 18px;
	text-align: center;
	font-weight: normal;
	text-transform: uppercase;
	text-shadow: 2px 2px #000000;
	margin: auto;
}

#titulo {
	background-color: #FAFAFA;
	max-height: 68px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	line-height: 30px;
}

#titulo span {
	color: #888888;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin: auto;
}

#menu {
	width: 100%;
	height: 40px;
	background: #000000;
	position: static;
	overflow: hidden;
	box-shadow: 0px 5px 5px rgba(0,0,0,0.5);
}

#controles {
	padding: 10px;
	border-radius: 5px;
	border: 2px solid #FFFFFF;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}

#contenido {
	width: 100%;
}

/*** MENU ***/

ul.nav {
	z-index: 9999;
	margin: 0;
}

ul.nav > li {
	display: inline-block;
}

ul.nav > li > p {
	background-color: #000000;
	color: #FFFFFF;
	padding: 10px 20px 10px 20px;
	margin: auto;
	cursor: pointer;
}

ul.nav > li > a {
	background-color: #000000;
	color: #FFFFFF;
	padding: 10px 20px 10px 20px;
	margin: auto;
}

ul.nav > li > a:link {
	background-color: #000000;
	color: #FFFFFF;
}

ul.nav > li > a:visited {
	background-color: #000000;
	color: #FFFFFF;
}

ul.nav > li > a:active {
	background-color: #000000;
	color: #FFFFFF;
}

ul.nav > li > a:hover {
	background-color: #888888;
	animation-name: menuAnimation;
	animation-duration: 0.3s;
}

ul.nav > li:hover > ul.list {
	display: block;
}

ul.nav > span {
	float: right;
	color: #FFFFFF;
	padding: 10px 20px 10px 20px;
}

ul.list {
	display: none;
	position: absolute;
}

ul.list > p {
	background-color: #000000;
	color: #888888;
	padding: 10px 20px 10px 20px;
	display: block;
	box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	margin: auto;
	cursor: pointer;
	user-select: none;
}

ul.list > a {
	background-color: #000000;
	color: #FFFFFF;
	padding: 10px 20px 10px 20px;
	display: block;
	box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	margin: auto;
}

ul.list > a:link {
	background-color: #000000;
	color: #FFFFFF;
}

ul.list > a:visited {
	background-color: #000000;
	color: #FFFFFF;
}

ul.list > a:active {
	background-color: #000000;
	color: #FFFFFF;
}

ul.list > a:hover {
	background-color: #888888;
	animation-name: menuAnimation;
	animation-duration: 0.3s;
}

@keyframes menuAnimation {
	from {
		background-color: #000000;
	}
	to {
		background-color: #888888;
	}
}

/*** LABEL ***/

label {
	color: #666666;
	font-family: Verdana, Tahoma, sans-serif;
	font-size: 18px;
	text-align: left;
	margin: 2px 2px 2px 2px;
}

button {
	background: #888888;
	color: #FFFFFF;
	font-family: Tahoma, Verdana, sans-serif;
	font-weight: bold;
	border-radius: 5px;
	border: 2px solid #FFFFFF;
	padding: 5px 15px 5px 15px;
}

button:hover {
	border: 2px solid #44AAFF;
	animation-name: btnAnimation;
	animation-duration: 0.3s;
}

@keyframes btnAnimation {
	from {
		border: 2px solid #FFFFFF;
	}
	to {
		border: 2px solid #44AAFF;
	}
}

a {
	color: #000000;
	text-decoration: none;
}

b {
	color: #000000;
	text-decoration: none;	
}

a:hover {
	color: #44AAFF;
	text-decoration: none;
}

fieldset {
	border: none;
	margin: 0;
}

input {
	border: none;
	font-family: inherit;
	font-size: inherit;
	margin: 0;
	outline: none;	
}

input[type="submit"] {
	cursor: pointer;
}

.clearfix {
	*zoom: 1;
}

.clearfix:before, .clearfix:after {
	content: "";
	display: table;	
}

.clearfix:after {
	clear: both;
}

#login-form {
	position: absolute;
	top: 200px;
	right: 0px;
	left: 0px;
	margin: auto;
	max-width: 300px;
	text-align: center;
	border-radius: 5px;
	background: #FFFFFF;
	box-shadow: 5px 5px 5px rgba(0,0,0,.5);
}

.cuadro_texto {
	font-family: sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	background: #ee0467
}

#login-form h1 {
	background-color: #bd0101;
	border-radius: 5px 5px 0 0;
	color: #fff;
	font-size: 14px;
	padding: 20px;
	text-align: center;
	text-transform: uppercase;
	margin: 0;
}

#login-form fieldset {
	padding: 20px;
	position: relative;
}

#login-form fieldset:before {
	background-color: #FFFFFF;
	content: "";
	height: 8px;
	left: 50%;
	margin: -4px 0 0 -4px;
	position: absolute;
	top: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 8px;
}

#login-form input[type="text"] {
	width: 180px;
}

#login-form input[type="password"] {
	width: 180px;
}

#login-form input[type="submit"] {
	background: #1dabb8;
	border-radius: 3px;
	color: #fff;
	font-weight: bold;
	margin-top: 20px;
	padding: 12px 20px;
}

#login-form input[type="submit"]:hover {
	background: #198d98;
}

.info {
	background: #e5e5e5;
	border-radius: 50%;
	display: inline-block;
	height: 20px;
	line-height: 20px;
	margin: 0 10px 0 0;
	text-align: center;
	width: 20px;
}

.pdf {
	width: 90%;
	height: 100vh;
	margin: 20px;
}

ul#archivos {
	padding: 2px;
	height: 40vh;
	width: 300px;
	overflow-y: auto;
	overflow-x: hidden;
	text-align: left;
	border: 1px solid #000000;
	background-color: #888888;
	color: #FFFFFF;
	font-size: 12px;
}

ul#archivos > li {
	height: 20px;
	padding: 5px;
	text-align: left;
	border: 1px solid #888888;
	background-color: #CCCCCC;
	color: #FFFFFF;
	font-size: 14px;
}

ul#archivos > a {
	color: #FFFFFF;
	text-decoration: none;
}

#balance {
	margin: 20px;
}

#balance table {
	margin: 4px;
	float: left;
}

#balance th {
	height: 30px;
	width: 100px;
	padding: 5px;
	vertical-align: middle;
	border: 1px solid #000000;
	color: #FFFFFF;
	font-size: 18px;
}

#balance td {
	height: 100px;
	width: 80px;
	padding: 5px;
	vertical-align: middle;
	border: 1px solid #000000;
	background-color: #CCCCCC;
	color: #222222;
	font-size: 16px;
}

#inicial th {
	background-color: #444444;
}

#salida th {
	background-color: #444444;
}

#recibo th {
	background-color: #444444;
}

#final th {
	background-color: #444444;
}

#merma th {
	background-color: #444444;
}

#error th {
	background-color: #444444;
}

#diferencia th {
	background-color: #444444;
}

#dmp th {
	background-color: #444444;
}

#balancesexcel {
	width: 100%;
	/*height: 500px;*/
	padding: 0;
	margin: 20px 0px 20px 0px;
	vertical-align: middle;
	border: 0px solid #000000;
	background-color: #BBBBBB;
	font-size: 14px;
	overflow: scroll;
}

#balancesexcel table {
	width: 100%;
	/*height: 500px;*/
	padding: 0;
	margin: auto;
	vertical-align: middle;
	border: 0px solid #000000;
	background-color: #BBBBBB;
	font-size: 12px;
}

#balancesexcel th {
	color: #FFFFFF;
	background-color: #888888;
	padding: 2px;
}

#balancesexcel td {
	padding: 2px;
	font-size: 12px;
	font-weight: bold;
}

#balancesexcel tr:nth-child(even) {
    background-color: #DDDDDD;
}

#balances {
	padding: 0;
	margin: 10px 10px 0px 10px;
	vertical-align: middle;
	border: 0px solid #000000;
	background-color: #EFEFEF;
	font-size: 14px;
	overflow: hidden;
}

#balances table {
	width: 100%;
	padding: 0;
	margin: auto;
	vertical-align: middle;
	border: 0px solid #000000;
	background-color: #BBBBBB;
	font-size: 14px;
}

#balances thead {
	display: block;
    width: 100%;
    height: 20px;
}

#balances tbody {
	display: block;
	height: 100px;
    overflow-y: auto;
    overflow-x: hidden;
}

#balances th {
	color: #FFFFFF;
	background-color: #888888;
	padding: 2px;
	margin: auto;
}

#balances td {
	padding: 2px;
	margin: auto;
	font-size: 12px;
	font-weight: bold;
}

#balances tr:nth-child(even) {
    background-color: #DDDDDD;
}

.marco {
	margin: 10px;
	padding: 10px;
	border-radius: 5px;
	border: 2px solid #FFFFFF;
	text-align: center;
	overflow: scroll;
}

.borde {
	margin: 0px 10px 0px 10px;
	padding: 0px;
	border-radius: 5px;
	background: #E0E0E0;
	border: 0px solid #FFFFFF;
	float: left;
}

.etiqueta {
	color: #666666;
	font-family: Verdana, Tahoma, sans-serif;
	font-size: 18px;
}

.dentro {
	color: #000000;
}

.fuera {
	color: #FF0000;
}

p.titulo {
	font-size: 18px;
	text-align: left;
	font-weight: bold;
	text-transform: uppercase;
}

p.subtitulo {
	font-size: 12px;
	text-align: left;
	font-weight: bold;
	text-transform: uppercase;
}

p.tanque {
	margin: 0;
	width: 75px;
	text-align: right;
}

p.calculo {
	margin: 0;
	width: 100px;
	text-align: right;
}

p.calculo {
	margin: 0;
	width: 100px;
	text-align: right;
}

th.calculo {
	float: right;
	margin: 0;
	width: 100px;
	margin-left: 10px;
	margin-right: 10px;
}

td.calculo {
	float: right;
	margin: 0;
	padding: 0;
	width: 100px;
}

input.calculo {
	width: 100px;
	text-align: right;
	margin-left: 10px;
	margin-right: 10px;
	pointer-events: none;
}

input.captura {
	width: 100px;
	text-align: right;
	margin-left: 10px;
	margin-right: 10px;
}

input#datepicker {
	text-align: center;
	width: 80px;
}

en-msgbox {
	z-index: 9999;
	background: rgba(0,0,0,.5);
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: none;
}

en-inmsgbox {
	z-index: 9999;
	background: rgba(0,0,0,.5);
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: none;
}

#grafica > .highcharts-container {
	margin: 10px auto 0px auto;
	z-index: -1 !important;
}