/* General */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  background-color: #bbdefb;
  text-color:#212121;
}

/* Input Forms*/
input[type="text"], input[type="password"], input[type="date"]{
  outline: none;
  padding: 20px;
  display: block;
  width: 300px;
  border-radius: 3px;
  border: 1px solid #eee;
  margin: 20px auto;
  text-color:#757575;
}

input[type="submit"] {
  padding: 10px;
  color: #fff;
  background: #0288D1;
  width: 320px;
  margin: 20px auto;
  margin-top: 0;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}
input[type="submit"]:hover {
  background-color: #03A9F4;
}

/* Header */
header {
  border-bottom: 2px solid #BDBDBD;
  padding: 5px 0;
  margin-bottom: 7px;
  width: 100%;
  text-align: center;
  background-color:#03A9F4;
}
header a {
  text-decoration: none;
  color: #fff;
}

/* Footer */
footer {
  border-top: 2px solid #BDBDBD;
  padding: 5px 0;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  position: fixed;
  bottom: 0;
  height: 8%;
  background-color:#03A9F4;
}
footer a {
  color: #fff;
}

/* table */
.datagrid table {
	border-collapse: collapse;
	text-align: left;
	width: 100%;
}
.datagrid {
	font: normal 12px/150% Arial, Helvetica, sans-serif;
	background: #fff;
	overflow: hidden;
	border: 1px solid #006699;
	-webkit-border-radius: 3px;
	moz-border-radius: 3px;
	border-radius: 3px;
}
.datagrid table td, .datagrid table th {
	padding: 3px 10px;
}
.datagrid table thead th {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #03A9F4), color-stop(1, #03A9F4) );
	background:-moz-linear-gradient( center top, #03A9F4 5%, #03A9F4 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#03A9F4', endColorstr='#03A9F4');
	background-color:#03A9F4;
	color:#FFFFFF;
	font-size: 15px;
	font-weight: bold;
	border-left: 1px solid #0288D1;
}
.datagrid table thead th:first-child {
	border: none;
}
.datagrid table tbody td { color: #212121;
	border-left: 1px solid #E1EEF4;
	font-size: 12px;
	font-weight: normal;
}
.datagrid table tbody .alt td {
	background: #E1EEF4;
	color: #00496B;
}
.datagrid table tbody td:first-child {
	border-left: none;
	}
.datagrid table tbody tr:last-child td {
	border-bottom: none;
}
div.gri{
	font-size: small;
	font-variant: small-caps;
	text-align: right;
}
div.nuevo{
	position: absolute;
    bottom: 30px;
    width: 100%;
}
img {
    pointer-events: none;
}

/* Sidebar*/
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* check boxes*/

.form-checkbox
{
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     display: inline-block;
     position: relative;
     background-color: #f1f1f1;
     color: #666;
     top: 10px;
     height: 30px;
     width: 30px;
     border: 0;
     border-radius: 3px;
     cursor: pointer;     
     margin-right: 7px;
     outline: none;
}
.form-checkbox:checked::before
{
     position: absolute;
     font: 13px/1 'Open Sans', sans-serif;
     left: 11px;
     top: 7px;
     content: '\02143';
     transform: rotate(40deg);
}
.form-checkbox:hover
{
     background-color: #f7f7f7;
}
.form-checkbox:checked
{
     background-color: #f1f1f1;
}
label.cb
{
     font: 300 16px/1.7 'Open Sans', sans-serif;
     color: #666;
     cursor: pointer;
}
table.check{
    margin-left:auto; 
    margin-right:auto;
}

table.resultadoPedidos tr{
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #666666;
}
table.resultadoPedidos tr:hover{
    background-color:#f5f5f5;
}
table.rPedidos tr:focus {
    background-color: yellow;
}
.selected {
    background-color:yellow;
}
.tablaPedidos tr:hover{
    background-color: #f5f5f5;
    color: black;
}
/*ConsultaA*/
table.tablangular{
    overflow:scroll;
}
.tablangular tr:nth-child(odd) {
    background: #E1EEF4;
    color: #00496B;
}
table.tablangular tr:hover{
     background-color:#BDBDBD;
 }
table.tablangular th:hover{
    cursor: pointer;
}
.arrow-down:after,.arrow-up:after{
    content: ' ';
    position: relative;
    left: 2px;
    border: 8px solid transparent;
}
.arrow-down:after{
    top: 10px;
    border-top-color: black;
}
.arrow-up:after{
    bottom: 15px;
    border-bottom-color: black;
}
.arrow-down,.arrow-up{
    padding-right: 10px;
}
/*FIN ConsultaA*/
.laboratorio {
    outline: none;
    padding: 20px;
    display: block;
    width: 300px;
    border-radius: 3px;
    border: 1px solid #eee;
    margin: 20px auto;
    text-color:#757575;
}
/*Laboratorio input muestra placeholder*/

/* fin Laboratorio input muestra placeholder*/
/*Laboratorio comprobanter*/
body.comprobante {
    margin-bottom:22%;
}
div.firma{
    display: block;
    margin-top: 60px;
    width: 100%;
    text-align: right;
    height: 12%;
    min-height: 95px;
    background-color: white;
}
.container:hover img{
    opacity: 0.3;
    position:relative;
}
#oculto {
    font-size: 40px;
    position: absolute;
    top: 0;
    left: 0;
}
@media print {
    #oculto {
        display :  none;
    }
}
div.comprobante{
     outline: none;
     padding-top: 20px;
     padding-bottom: 20px;
     display: block;
}
header.comprobante{
    padding: 5px 0;
    margin-bottom: 7px;
    width: 100%;
    text-align: center;
    display: block;
}
/* fin Laboratorio comprobanter*/
