﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Century Gothic', sans-serif;
    font-weight: bold;
    outline: none;
}

/*ESTILO DE GRIDVIEW*/
.tablaResponsiva {
    overflow: scroll;
    max-height: 440px;
    position: relative;
    display: block;
}

.tbl_div {
    width: 95%;
    overflow: scroll;
    max-height: 380px;
    position: relative;
    display: block;
    margin: auto;
    /*width: 95%;
    margin: auto;
    border: 1px solid;*/
}

.tbl_ck {
    width: 100%;
    overflow: scroll;
    max-height: 450px;
    position: relative;
    display: block;
    margin: auto;
}

.tbl_hall {
    width: 100%;
    overflow: scroll;
    max-height: 300px;
    position: relative;
    display: block;
    margin: auto;
}

.btn_ck {
    display: inline-block;
    vertical-align: top;
    width: 12%;
}

.style_tbl {
    width: 100%;
    margin: auto;
    border-collapse: collapse;
    background-color: #fff;
    text-align: center;
    padding: 11px;
    font-size: 10px;
}

    .style_tbl thead tr {
        box-shadow: 0 5px 7px #ff8000;
        /*box-shadow: 0 0 7px #0d3b70;*/
    }

    .style_tbl th {
        /*Encabezado*/
        background: rgb(13,59,112); /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, rgb(13,59,112), rgb(13,59,112)); /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, rgb(13,59,112), rgb(13,59,112)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        color: #fff !important;
        font-size: 10pt;
        font-weight: bold;
        padding: 5px 5px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

.sorting {
    background-color: #D4D4D4;
}

.asc:after {
    content: ' ↑';
}

.desc:after {
    content: " ↓";
}

.style_tbl td {
    /* Filas */
    font-size: 9pt !important;
    padding: 8px;
    color: #000;
}


.style_tbl tbody tr:hover {
    cursor: grabbing;
    background-color: #e8e8e8;
    /*background: #F3E5AB !important;*/
    font-weight: bold !important;
    /*color: rgb(13,59,112) !important;*/
}

.header_tbl th {
    position: sticky;
    top: 0;
    z-index: 2;
}

.style_tbl a {
    width: 100%;
    padding: 5px;
    border: none;
    color: rgb(13,59,112);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: underline !important;
    outline: none;
}

/* INICIO Progress */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #111;
    opacity: .9;
    height: 100%;
    z-index: 10000;
}

.loader {
    position: absolute;
    width: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.duo {
    height: 20px;
    width: 50px;
    background: hsla(0, 0%, 0%, 0.0);
    position: absolute;
}

.duo, .dot {
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    /*animation-iteration-count: infinite;*/
}

.duo1 {
    left: 0;
}

.duo2 {
    left: 30px
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #ddd;
    position: absolute;
}

.dot-a {
    left: 0px;
    animation: 2s colores infinite;
}

.dot-b {
    right: 0px;
    animation: 2s colores infinite;
}


@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(180deg)
    }
}

@keyframes onOff {
    0% {
        opacity: 0;
    }

    49% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes colores {
    0% {
        background: #fc3;
    }

    50% {
        background: red;
    }

    100% {
        background: indigo;
    }
}

.duo1 {
    animation-name: spin;
}

.duo2 {
    animation-name: spin;
    animation-direction: reverse;
}

    .duo2 .dot-b {
        animation-name: onOff;
    }

.duo1 .dot-a {
    opacity: 0;
    animation-name: onOff;
    animation-direction: reverse;
}

/*Segundo Loader*/
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 45%;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid #fff;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #fff transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*SCROLLBAR*/
.scrollbarAzul .sticky-top {
    top: 0 !important;
}

.scrollbarAzul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    /*background-color: #1a2943;*/
    border-radius: 10px;
}

.scrollbarAzul::-webkit-scrollbar {
    width: 10px;
    /*background-color: #1a2943;*/
}

.scrollbarAzul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-image: -webkit-linear-gradient(120deg,#a1c4fd 0,#c2e9fb 100%);
    background-image: linear-gradient(120deg,#a1c4fd 0,#c2e9fb 100%);
}

.square::-webkit-scrollbar-track {
    border-radius: 0 !important;
}

.square::-webkit-scrollbar-thumb {
    border-radius: 0 !important;
}

.thin::-webkit-scrollbar {
    width: 8px;
}

.scrollbarRosa .sticky-top {
    top: -20px !important;
}

.scrollbarRosa::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #c00;
    border-radius: 10px;
}

.scrollbarRosa::-webkit-scrollbar {
    width: 12px;
    background-color: #c00;
}

.scrollbarRosa::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-image: -webkit-gradient(linear, left bottom, left top, from(#ff4f5e), color-stop(99%, #ff4f5e), to(#ff4f5e));
    background-image: -webkit-linear-gradient(bottom, #ff4f5e 0%, #ff4f5e 99%, #ff4f5e 100%);
    background-image: linear-gradient(to top, #ff4f5e 0%, #ff4f5e 99%, #ff4f5e 100%);
}

.square::-webkit-scrollbar-track {
    border-radius: 0 !important;
}

.square::-webkit-scrollbar-thumb {
    border-radius: 0 !important;
}

.thin::-webkit-scrollbar {
    width: 6px;
}

.my-custom-scrollbar tbody tr:first-child {
    position: -webkit-sticky;
    position: sticky;
    top: -16px;
    z-index: 1;
}


/****************************************************
Fondo
*****************************************************/
.fondoGeneral {
    width: 100%;
    height: 500px;
    background: url('../Imagenes/Fondo.jpg') bottom no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /*margin: auto;*/
    text-align: center;
    color: #fff;
}
/****************************************************
Cabezal
*****************************************************/
.cabezal {
    width: 100%;
    height: 40px;
    position: fixed !important;
    top: 100px !important;
    z-index: 10;
    background: url('../Imagenes/Fondo.jpg') bottom no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    padding: 7px;
}

    .cabezal .sp_an {
        font-weight: bold;
        color: #fff;
        font-size: 22pt;
    }

/****************************************************
Expedientes
*****************************************************/

#div_busqueda {
    width: 95%;
    /*margin: 10% 0 0 15%;*/
    margin: 1% 0% 1% 2%;
    padding: 5px;
    /*border: 1px solid;*/
}

    #div_busqueda:hover {
        box-shadow: 1px 1px 2px 2px rgba(0, 0, 255, .7);
        border-radius: 15px;
        /*margin: 1rem;*/
    }

    #div_busqueda .txt_NumEmp {
        display: inline-block;
        vertical-align: top;
        width: 15%;
        margin: 5px;
        background-color: #e8e8e8;
    }

    #div_busqueda .txt_Nombre {
        display: inline-block;
        vertical-align: top;
        width: 23%;
        margin: 5px;
        background-color: #e8e8e8;
    }

    #div_busqueda .txtSearch {
        /*outline: none;*/
        padding: 5px;
        border: none;
        text-align: center;
        border: none;
        /*border: solid 2px grey;*/
        border-radius: 5px;
        font-size: 11pt;
        font-weight: bold;
    }

    #div_busqueda .btnSearch {
        width: 40px;
        margin-left: 5%;
        /*outline: none;*/
    }

.div_selecCarta {
    margin: 5px;
    color: #3c7fbc;
    font-weight: bold;
    font-style: italic;
    font-size: 15px;
}

    .div_selecCarta .ddlSelecCarta {
        width: 20%;
        outline: none;
        padding: 5px;
        border: none;
        text-align: center;
        border: none;
        border: solid 2px grey;
        border-radius: 5px;
        font-size: 14px;
        font-weight: bold;
    }

        .div_selecCarta .ddlSelecCarta:hover {
            box-shadow: 10px 15px rgba(0,0,0,0,4);
            cursor: pointer;
        }

.div_exp {
    width: 100%;
    margin: auto;
    /*padding: 1rem;
    border: 2px solid;*/
}

    .div_exp .conf_exp {
        display: inline-block;
        vertical-align: top;
        width: 78%;
        /*margin: 1px;
        border: 2px solid red;*/
        float: left;
        text-align: center;
        padding: 1rem;
    }

    .div_exp .barra_datos {
        display: inline-block;
        vertical-align: top;
        width: 20%;
        /*border: 2px solid blue;*/
        float: right;
    }

.div_condicion, .div_cartaExc {
    width: 100%;
    margin: auto;
    padding: 1rem;
    /*border: 1px solid;*/
}

    .div_condicion .sec_condicion {
        display: inline-block;
        vertical-align: top;
        width: 32%;
        padding: 3px;
        /*border: 1px solid;*/
        text-align: center;
        font-style: italic;
        font-weight: bold;
        font-size: 13pt;
        color: #3c7fbc;
    }

.btnGenerarExp {
    width: 25%;
    margin: 3% 0%;
    padding: 5px;
    font-size: 14pt;
    /*background-color: #3c7fbc;*/
    background-color: #fff;
    color: #3c7fbc;
    border: none;
    border-radius: 10px;
    border: 1px solid #3c7fbc;
}

    .btnGenerarExp:hover {
        background-color: #3c7fbc;
        color: #fff;
        box-shadow: 0 0 7px #e8e8e8;
    }

.div_cartaExc .sec_carta {
    display: inline-block;
    vertical-align: top;
    width: 48%;
    padding: 3px;
    margin: auto;
    /*border: 1px solid;*/
    text-align: center;
    font-style: italic;
    font-weight: bold;
    font-size: 13pt;
    color: #3c7fbc;
}

    .div_cartaExc .sec_carta .txt {
        outline: none;
        padding: 5px;
        border: none;
        text-align: center;
        border: none;
        /*border: solid 2px grey;*/
        border-radius: 5px;
        font-size: 14px;
        font-weight: bold;
        background-color: #e8e8e8;
    }

.div_usuarioSes {
    background-color: #3c7fbc;
    color: #fff;
    text-align: center;
    padding: 5px;
    margin: 5px;
    font-size: 12pt;
    border-radius: 5px;
}

    .div_usuarioSes .sec_usuarioSes {
        display: inline-block;
        vertical-align: top;
        width: 32.5%;
        margin: auto;
        /*padding: auto;*/
        /*border: 1px solid black;*/
    }

.div_datosBarraLat {
    background: url('../Imagenes/Fondo.jpg') bottom no-repeat;
    background-size: cover;
    min-height: 480px;
    border-radius: 25px;
    text-align: center;
    /*font-size: 15px;*/
    color: #fff;
    padding: 10px;
    /*overflow-y: scroll;*/
}

    .div_datosBarraLat .div_etiquetaBarra {
        display: inline-block;
        vertical-align: top;
        width: 33%;
        /*font-weight: bold;*/
        font-size: 10px;
        /*border: 1px solid;*/
        text-align: left;
    }

    .div_datosBarraLat .div_lblDatoBarra {
        display: inline-block;
        vertical-align: top;
        width: 65%;
        font-size: 14px;
        /*border: 1px solid;*/
        text-align: right;
    }

/*CHECKLIST*/
.div_folioAvance {
    width: 96%;
    padding: 5px;
    margin: auto;
    /*border: 1px solid;*/
    font-size: 16px;
    color: darkblue;
}

    .div_folioAvance .div_folio {
        width: 45%;
        float: left;
        /*border: 1px solid;*/
        text-align: left;
    }

    .div_folioAvance .div_avance {
        width: 45%;
        float: right;
        /*border: 1px solid;*/
        text-align: right;
    }

.div_repeater {
    width: 100%;
    padding: 1rem;
    border: 2px dashed brown;
    /*text-align: center;*/
}

.div_headerRepeater {
    font-size: 11px;
    height: 50px;
}

.div_headSecc1 {
    width: 6%;
    /*height: 50px;
    display: inline-block;
    vertical-align: top;*/
    padding: 1px;
    font-size: 11px;
    /*margin: 0% 1% 0% 0%;*/
    border: 1px solid #fff;
    background-color: #3c7fbc;
    color: #fff;
}

.div_headSecc2 {
    width: 13%;
    /*height: 50px;
    display: inline-block;
    vertical-align: top;*/
    padding: 1px;
    /*margin: 0% 1% 0% 0%;*/
    border: 1px solid #fff;
    background-color: #3c7fbc;
    color: #fff;
}

.div_headSecc3 {
    width: 4%;
    /*height: 50px;
        display: inline-block;
        vertical-align: top;*/
    padding: 2px;
    /*margin: 0% 1% 0% 0%;*/
    border: 1px solid #fff;
    background-color: #3c7fbc;
    color: #fff;
}

.div_headSecc4 {
    width: 7%;
    /*height: 50px;
        display: inline-block;
        vertical-align: top;*/
    padding: 1px;
    /*margin: 0% 1% 0% 0%;*/
    border: 1px solid #fff;
    background-color: #3c7fbc;
    color: #fff;
}

.div_headSecc5 {
    width: 7%;
    /*height: 50px;
        display: inline-block;
        vertical-align: top;*/
    padding: 1px;
    /*margin: 0% 1% 0% 0%;*/
    border: 1px solid #fff;
    background-color: #3c7fbc;
    color: #fff;
}

.div_headSecc6 {
    width: 10%;
    /*height: 50px;
        display: inline-block;
        vertical-align: top;*/
    padding: 1px;
    /*margin: 0% 1% 0% 0%;*/
    border: 1px solid #fff;
    background-color: #3c7fbc;
    color: #fff;
}

.div_headSecc7 {
    width: 16%;
    /*height: 50px;
        display: inline-block;
        vertical-align: top;*/
    padding: 1px;
    /*margin: auto;*/
    border: 2px solid #fff;
    background-color: #3c7fbc;
    color: #fff;
}

.div_gvtxtObs {
    overflow-y: scroll;
    max-height: 150px;
}

.div_botones {
    width: 90%;
    margin: auto;
    /*border: 1px solid;*/
}

.btnSigAnt {
    width: 40px;
}

    .btnSigAnt:hover {
        box-shadow: 0 0 5px #000;
        outline: none;
    }

.btnNvaCarga {
    width: 40px;
    margin: 3px;
}

    .btnNvaCarga:hover {
        box-shadow: 0 0 5px #000;
        outline: none;
    }

/****************************************************
Asignación de Folios
*****************************************************/

.divSelecFolio {
    width: 95%;
    margin: auto;
    padding: 2%;
}

    .divSelecFolio .ddlValid {
        display: inline-block;
        vertical-align: top;
        width: 30%;
        margin: auto;
    }

    .divSelecFolio .cbAsigAll {
        display: inline-block;
        vertical-align: top;
        width: 15%;
        margin: auto;
    }

    .divSelecFolio .btnAsigFol {
        display: inline-block;
        vertical-align: top;
        width: 20%;
        margin: auto;
    }
/****************************************************
Validacion
*****************************************************/

.div_validacion {
    width: 100%;
    padding: 5px;
    /*background-color: #a1c4fd;*/
}

    .div_validacion .div_historialCargas {
        display: inline-block;
        vertical-align: top;
        width: 13%;
        min-height: 150px;
        overflow-y: scroll;
        /*border: 2px solid red;*/
    }

    .div_validacion .div_vistaArchivo {
        /*display: inline-block;
        vertical-align: top;*/
        width: 100%;
        margin: auto;
        min-height: 150px;
        overflow: scroll;
        /*border: 2px solid green;*/
    }

    .div_validacion .div_aspectoValidacion {
        display: inline-block;
        vertical-align: top;
        width: 23%;
        min-height: 100px;
        overflow-y: scroll;
        font-size: 13px;
        font-weight: bold;
        /*border: 2px solid;*/
    }

        .div_validacion .div_aspectoValidacion .fuente {
            font-size: 11px;
        }

.datosArchivoVal {
    min-height: 180px;
    overflow-y: scroll;
    padding: 3px;
    font-size: 12px;
}

/****************************************************
Actualización de Datos
*****************************************************/

/*
 CSS for the main interaction
*/
.tabset > input[type="radio"] {
    position: absolute;
    left: -200vw;
}

.tabset .tab-panel {
    display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
    display: block;
}

/*
 Styling
*/
body {
    font: 16px/1.5em "Overpass", "Open Sans", Helvetica, sans-serif;
    color: #333;
    font-weight: 300;
}

.tabset > label {
    position: relative;
    display: inline-block;
    padding: 10px 10px 20px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
}

    .tabset > label::after {
        content: "";
        position: absolute;
        left: 15px;
        bottom: 10px;
        width: 22px;
        height: 4px;
        background: #8d8d8d;
    }

input:focus-visible + label {
    outline: 2px solid rgba(0,102,204,1);
    border-radius: 3px;
}

.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
    color: #06c;
}

    .tabset > label:hover::after,
    .tabset > input:focus + label::after,
    .tabset > input:checked + label::after {
        background: #06c;
    }

.tabset > input:checked + label {
    border-color: #ccc;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
}

.tab-panel {
    padding: 30px 0;
    border-top: 3px solid #ccc;
}

/*
 Demo purposes only
*/
*,
*:before,
*:after {
    box-sizing: border-box;
}

/*body {
    padding: 30px;
}*/

.tabset {
    width: 95%;
    margin: auto;
}


/****************************************************
Hallazgos
*****************************************************/

/****************************************************
Reportes Excelencia Operativa
*****************************************************/

/****************************************************
Reportes Cumplimiento Expedientes
*****************************************************/

.div_rep_filtros {
    width: 95%;
    margin: auto;
    padding: 1rem;
    border-bottom: 5px solid #e8e8e8;
}

.ddlRep {
    cursor: pointer;
    font-size: 11pt;
}

/*INICIO POPUP VER DETALLE EMPLEADO DATOS PERSONALES Y CHECKLIST*/
.mask_modal {
    background-color: #000;
    position: fixed;
    filter: alpha(opacity=80);
    opacity: 0.8;
    z-index: 999;
}

.panelModal_VerPersonal {
    width: 80%;
    height: 600px;
    background-color: white;
    /*padding-left: 19px;
    padding-right: 19px;*/
    /*margin: 5px;
    padding: 3%;*/
    box-shadow: 0px 0px 10px #FFF;
    border: 2px solid #000;
    border-radius: 5px;
    animation: miAnimacion .3s ease-in-out;
}

@keyframes miAnimacion {
    from {
        opacity: 0;
        transform: translateY(-100%) scale(2.5);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.div_modal_datos {
    width: 140% !important;
    background-color: rgb(13,59,112);
    color: #fff;
    /*margin-bottom: 10px;*/
}

.div_modal_folioAvance {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.div_cancel {
    width: 8%;
    display: inline-block;
    vertical-align: top;
    /*margin: 1px 1px;*/
}

    .div_cancel .btn_cancelar {
        width: 30px;
        /*float: right;*/
        margin-right: -650px;
        margin-top: 10px;
        outline: none;
    }

.div_datos_check {
    width: 100%;
    margin: auto;
    padding: 1rem;
    /*border: 2px solid;*/
}

    .div_datos_check .div_verCheck {
        display: inline-block;
        vertical-align: top;
        width: 65%;
        margin: 1px;
        /*border: 2px solid red;*/
        float: right;
        text-align: center;
        /*padding: 1rem;*/
    }

    .div_datos_check .div_verDatosPersonales {
        display: inline-block;
        vertical-align: top;
        width: 30%;
        /*border: 2px solid blue;*/
        float: left;
    }

.div_datosCaptura {
    width: 100%;
    background-color: #e8e8e8;
    color: rgb(13,59,112);
    /*padding: 2px;*/
    font-size: 8pt;
    /*padding: 2px;*/
}

.lbl_buscador {
    border-bottom: 5px solid #3c7fbc;
    border-right: 5px solid #3c7fbc;
    font-size: 14pt;
    text-align: center;
    margin: 5px;
}

.txt_buscador {
    outline: none;
    border-bottom: 3px solid #3c7fbc;
    /*border-right: 5px solid #3c7fbc;*/
    font-size: 10pt;
    /*text-align: center;*/
    margin: 5px;
}
/****************************************************
Reporte Actualización de Datos
*****************************************************/
/****************************************************
Reporte Hallazgos
*****************************************************/
/****************************************************
Reporte Aniversarios
*****************************************************/
/****************************************************
Reporte Ingresos
*****************************************************/
/****************************************************
Análisis de Riesgo
*****************************************************/
/****************************************************
Reporte Análisis de Riesgo
*****************************************************/
/****************************************************
Historial de Movimientos (REgistros)
*****************************************************/
/*TABS*/
.header_hm,
.main_hm {
    padding: 0.7px;
    width: 100%;
}

.header_hm {
    background: #3c7fbc;
    /*background: rgba( 159, 159, 207, 0.65);*/
    color: #fff;
    min-height: 70px;
    position: fixed;
    top: 135px;
    right: 2%;
    left: 2%;
    min-height: 10vh;
    z-index: 5;
}

.main_hm {
    /*margin-top: 190px;
    margin-left: 2%;*/
    background: #fff;
    /*margin: 15px auto;*/
    min-height: 450px;
    margin: 5px;
    overflow: hidden;
}

/*Menu Consulta Movimientos*/
.base_marco {
    /*max-width: 700px;*/
    width: 100%;
    /*min-height: 50vh;*/
    box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, 0.5);
    /*border: 30px solid #dcdcdc;*/
    /*border: 20px solid #cacaca;*/
}

.contenido_menu {
    min-height: 50vh;
    margin: 0;
    background: #fff;
    padding: 0.5rem;
    transition: all .3s;
    border-top : 2px solid blue;
    border-radius: 3px;
    overflow-y: scroll;
}


h2 {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0 0 0.5em;
    color: #000;
}

#pestañas, .pestañas {
    /*position: fixed;
    margin-top: 600px;*/
    border: none;
    display: flex;
    list-style: none;
    background: #e8e8e8;
    /*color: rgb(13,59,112) !important;
    font-weight: bold;*/
    justify-base_marco: space-between;
    box-shadow: 5px 5px grey;
    padding: 0px;
}

.descripcion_bloque {
    /*width: 25%;*/
    position: relative;
    padding: 0.7em;
    font-size: 18px;
    border: none;
    background-color: #fff;
    color: rgb(35, 1, 108);
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    /*font-weight: 500;*/
    z-index: 3;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

    .descripcion_bloque:focus {
        outline: none !important;
    }

.primer_slaid, .segundo_slaid {
    position: absolute;
    display: inline-block;
    height: 4.5em;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1.05);
    /*color: rgb(13,59,112);
    font-weight: bold;*/
    border-radius: 20px;
}

.primer_slaid {
    background-color: #fff;
    z-index: 2;
}

.segundo_slaid {
    opacity: 0;
    background: #fff;
    color: #3c7fbc;
    z-index: 1;
}

.squeeze {
    transform: scale(0.8);
}
/*TABS*/

.div_datgen {
    border-right: 1px solid;
    margin: auto;
    text-align: center;
    padding: 10px;
    font-size: 9pt;
}

/*Barra lateral*/
.RegBarraLat {
    /*background-color*/: #c1a4ff;
    background: url('../Imagenes/Fondo.jpg') bottom no-repeat;
    background-size: cover;
    min-height: 450px;
    border-radius: 10px;
    text-align: center;
    /*font-size: 15px;*/
    color: #fff;
    /*overflow-y: scroll;*/
}

    .RegBarraLat .imgBarra{
        width: 182px;
        height: 221px;
        border-radius: 15px;
        margin: 5px;
    }

    .RegBarraLat .lblEtiqBarra {
        font-size: 11px;
        /*border: 1px solid;*/
        text-align: left;
    }

    .RegBarraLat .lblDatoBarra {
        font-size: 14px;
        /*border: 1px solid;*/
        text-align: right;
    }

.seccDatGen {
    padding: 5px;
    text-align: center;
    font-size: 13px;
    color: #2d0289;
    overflow-y: scroll;
}

.seccDatGen .fila{
    margin: 0.2rem;
}

/****************************************************
Concentrado de Documentos
*****************************************************/

/****************************************************
Consulta de Fotografías
*****************************************************/

/****************************************************
Consulta Ex Militares
*****************************************************/


.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    background: #000;
    z-index: 10;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*@import url(https://fonts.googleapis.com/css?family=Lora:400,700italic);

* {
    margin: 0;
    padding: 0;
}

::-webkit-input-placeholder {
    color: #fff;
}

::-moz-placeholder {
    color: #fff;
}

body {
    background: url("https://static.pexels.com/photos/9316/notebook-office-writing-table.jpg");
    background-size: cover;
    color: #fff;
    font-family: 'Lora', serif;
}

    body:after {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .4);
        z-index: -1;
    }

.Buscador {
    background: url("../img/search.png") no-repeat 9px center;
    color: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    padding: 9px 10px 9px 32px;
    margin: 3px;
    outline: none;
    position: absolute;
    right: 0;
    width: 20%;
    transition: 1s all ease;
}

.tabla, tr, th, td {
    width: 100%;
    max-width: 640px;
    padding: 9px;
    border: 1px solid #ddd;
    border-collapse: collapse;
    margin: 15% auto;
}

#tabla {
    position: relative;
}

tr.buscador, td.buscador, tr.head, th.head {
    border: 0;
}

td.buscador {
    padding: 0;
}

th.head {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}*/

.ajax__tab_header {
    min-height: 400px;
    font-size: 12px;
    background: url(images/tab-line.gif) repeat-x bottom;
}
