/* 
    Document   : jrs-bootstrap
    Created on : 13-ene-2016, 13:02:16
    Author     : usuario
    Description:
        Purpose of the stylesheet follows.
*/

/* Soluciona un problema de las ventanas modales */
.modal-backdrop {
    /* bug fix - no overlay */    
    display: none;    
}

.marginall { margin: 5px; }

.well-lightblue{ background: #D0E2EA}
.well-lightgrey{ background: #EEEEEE}

.form-actions {
    border-top: 1px solid rgba(0, 0, 0, 0.4);
    position: relative;
    padding-top: 13px;
    margin-top: 6px;
    text-align: right;
}

.form-actions:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
}

.form-elemento,
.form-grupo {
    padding-top:16px;
    text-align: center;
}

body.LoginController {
    padding-top: 40px;
    background: url(../images/escheresque_ste.png);
}

#form-login-contenedor {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius: 15px / 15px;
    -webkit-border-radius: 15px 15px;
    border-radius: 15px / 15px;
    -moz-box-shadow: rgba(0, 0, 0, 0.48) 0px 0px 54px, inset rgba(255, 255, 255, 0.09) 0 1px 1px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.48) 0px 0px 54px, inset rgba(255, 255, 255, 0.09) 0 1px 1px;
    box-shadow: rgba(0, 0, 0, 0.48) 0px 0px 54px, inset rgba(255, 255, 255, 0.09) 0 1px 1px;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(100px, rgba(0, 0, 0, 0)), color-stop(100%, rgba(255, 255, 255, 0.1)));
    background: -moz-linear-gradient(rgba(0, 0, 0, 0) 100px, rgba(255, 255, 255, 0.1));
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0) 100px, rgba(255, 255, 255, 0.1));
    background: linear-gradient(rgba(0, 0, 0, 0) 100px, rgba(255, 255, 255, 0.1));
    padding: 0px 27px 20px;
    position: relative;
}

/* line 48, ../sass/style.scss */
body.General {
    background: url(../images/groovepaper.png);
}

#logo {
  display: block;
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  background: url("../images/logo_janto4.png") no-repeat center center;
  width: 117px;
  height: 40px;
  position: relative;
  top: 3px;
}

/* Extra small devices (phones, up to 480px) */
/*@media screen and (max-width: 767px) {
    table{
       font-size: 8px; 
    }
}*/

.celda-right{
    text-align: right;
}
.celda-left{
    text-align: left;
}
.celda-center{
    text-align: center;
}

.padding-der{
    padding-right: 0px;
}

.padding-izq{
    padding-left: 0px;
}

.padding-centro{
    padding-left: 0px;
    padding-right: 0px;
}

.row.no-gutter [class*='col-']:not(:first-child),.row.no-gutter [class*='col-']:not(:last-child) {
  padding-right:0;
  padding-left:0;
}

.row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}

/*botones de accion*/
.fa-check.activo{
    color: green;
}

.fa-check.inactivo{
    color: lightgray;
}

.fa.boton{
    cursor:pointer;
}

.fa.botonactivo{
    color: black;
}
.fa.botoninactivo{
    color: gray;
}
/*-------------------------------*/

.table-fixed{
  width: 100%;
  background-color: #f3f3f3;
}

/*Tabla con cabecera fija*/
.header-fixed {
    width: 100% 
}

.header-fixed > thead,
.header-fixed > tbody,
.header-fixed > thead > tr,
.header-fixed > tbody > tr,
.header-fixed > thead > tr > th,
.header-fixed > tbody > tr > td {
    display: block;
}

.header-fixed > tbody > tr:after,
.header-fixed > thead > tr:after {
    content: ' ';
    display: block;
    visibility: hidden;
    clear: both;
}

.header-fixed > tbody {
    overflow-y: auto;
    height: 200px;
}

.header-fixed > tbody > tr > td,
.header-fixed > thead > tr > th {
    width: 50%;
    float: left;
}
.tablaJPS {
    border-style: solid;
}
.tablaJPS td {
    padding: 10px;
    text-align: center;
    font-size: smaller;
}

.tablaJPS td .centro{
    background-color: #0075b0;
}

.centro{
    background-color: aliceblue;
}
.centro.cabecera{
    border-right-style: solid;
    border-left-style: solid;
}
.centro.left{
    border-left-style: solid;
}
.centro.right{
    border-right-style: solid;
}

/* Tooltip */
.tooltip_gestor {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip_gestor .tooltiptext_gestor {
  visibility: hidden;
  width: 120px;
  background-color: green;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip_gestor .tooltiptext_gestor::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: green transparent transparent transparent;
}

.tooltip_gestor:hover .tooltiptext_gestor {
  visibility: visible;
}

/* Filtros opcionales */
.filtroopcional {
    padding: 12px;
}
.filtroopcional label {
    font-size: smaller;
}

select#codIdioma {
  width: 100%;
  height: 34px;
  padding: 6px 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: left;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 0px 4px 4px 0px;
}

.contenedor-filtro {
    padding: 1rem;
    border-radius: 3px;
    background-color: #f5f5f5;
    border-color: lightgray;
    border: 1px solid #e3e3e3;
    margin-bottom: 2rem;
}

.asignador_informes tr{
    font-size: small;
    border:1px solid;
}

.asignador_informes td,th{
    padding: 0.5rem;
    text-align: center;
}

.asignador_informes th{
    background-color: #bbb;
}

#seccion-inf {
    padding: 4px;
    font-weight: bolder;
}