/********************************************
#### Estructura:
## - Seccion - HTML
## - Seccion - Fonts
## - Seccion - Pagina
## - Seccion - Contenido

## - Elementos
## - Seccion - Botones
## - Seccion - Botones: Tabla
## - Seccion - Grupo Botones
## - Seccion - Modales
## - Seccion - Modal: Login
## - Seccion - SweetAlert
## - Seccion - Titulos
## - Seccion - Tablas
## - Seccion - Tablas: PlaceHolder
## - Seccion - Tablas: Progreso
## - Seccion - Tablas: Campos
## - Seccion - Formulario

## - Secciones
## - Seccion - Navbar
## - Seccion - Footer
## - Seccion - Login
## - Seccion - Dashboard

## - Responsivo
********************************************/

/* ## - Seccion - HTML */
html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}
body {
    background-color: #f7f4ed;
}
/* ## - Seccion - Fonts */
/* open-sans-regular */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v17-latin-regular.eot');
    /* IE9 Compat Modes */
    src: local('Open Sans Regular'), local('OpenSans-Regular'),
        url('../fonts/open-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/open-sans-v17-latin-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/open-sans-v17-latin-regular.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/open-sans-v17-latin-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/open-sans-v17-latin-regular.svg#OpenSans') format('svg');
    /* Legacy iOS */
}
/* open-sans-600 */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v17-latin-600.eot');
    /* IE9 Compat Modes */
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
        url('../fonts/open-sans-v17-latin-600.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/open-sans-v17-latin-600.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/open-sans-v17-latin-600.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/open-sans-v17-latin-600.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/open-sans-v17-latin-600.svg#OpenSans') format('svg');
    /* Legacy iOS */
}
/* open-sans-700 */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v17-latin-700.eot');
    /* IE9 Compat Modes */
    src: local('Open Sans Bold'), local('OpenSans-Bold'),
        url('../fonts/open-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/open-sans-v17-latin-700.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/open-sans-v17-latin-700.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/open-sans-v17-latin-700.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/open-sans-v17-latin-700.svg#OpenSans') format('svg');
    /* Legacy iOS */
}
/* open-sans-800 */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/open-sans-v17-latin-800.eot');
    /* IE9 Compat Modes */
    src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'),
        url('../fonts/open-sans-v17-latin-800.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/open-sans-v17-latin-800.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/open-sans-v17-latin-800.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/open-sans-v17-latin-800.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/open-sans-v17-latin-800.svg#OpenSans') format('svg');
    /* Legacy iOS */
}

/* ## - Seccion - Pagina */
.pagina {
    padding: 60px 15px;
}
/* ## - Seccion - Contenido */
.contenido {
    padding: 40px 15px;
    background-color: #fff;
}

/* ## - Elementos */
/* ## - Seccion - Botones */
.boton-crear {
    display: block;
    position: relative;
    background-color: #4e4d4b;
    color: #fff;
    margin: 0 0 25px auto;
    padding: 12px 25px 12px 47px;
    border: 1.5px solid #4e4d4b;
    font-weight: 600;
    border-radius: 46px;
}
.boton-crear:hover, .boton-crear:active, .boton-crear:focus {
    background-color: #343433;
    border-color: #343433;
}
.boton-crear::after {
    content: '';
    position: absolute;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #fff;
    top: 0;
    margin-left: 20px;
    margin-top: auto;
    margin-bottom: auto;
    bottom: 0;
}
.boton-crear::before {
    content: '';
    position: absolute;
    left: 0;
    left: 0;
    width: 2px;
    height: 12px;
    background-color: #fff;
    top: 0;
    margin-left: 25px;
    margin-top: auto;
    margin-bottom: auto;
    bottom: 0;
}
.boton-agregar {
    background-color: #28db6d;
    color: #fff;
    padding: 10px 24px;
    border: 0;
    font-weight: 600;
}
.boton-eliminar {
    background-color: #f93345;
    color: #fff;
    padding: 10px 24px;
    border: 0;
    font-weight: 600;
}
.boton-eliminar:disabled {
    background-color: rgba(249, 51, 69, 0.33);
}
.boton-regresar {
    display: block;
    position: absolute;
    background-color: transparent;
    color: #4e4d4b;
    margin: 0 auto 25px 0;
    padding: 12px 25px 12px 47px;
    border: 1.5px solid #4e4d4b;
    font-weight: 600;
    border-radius: 46px;
}
.boton-regresar::before {
    content: '';
    position: absolute;
    left: 0;
    width: 12px;
    height: 2px;
    top: 0;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: auto;
    bottom: 0;
    border: solid #4e4d4b;
    border-width: 0 3px 3px 0;
    transform: rotate(145deg);
    -webkit-transform: rotate(145deg);
}
.boton-regresar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 12px;
    height: 2px;
    top: 0;
    margin-left: 20px;
    margin-top: 26px;
    margin-bottom: auto;
    bottom: 0;
    border: solid #4e4d4b;
    border-width: 0 3px 3px 0;
    transform: rotate(-145deg);
    -webkit-transform: rotate(-145deg);
}
/* ## - Seccion - Botones: Tabla */
.tabla .boton-activo {
    background-color: #28db6d;
    color: #fff;
    padding: 10px 24px;
    border: 0;
    font-weight: 600;
}
.tabla .boton-desactivado {
    background-color: #f93345;
    color: #fff;
    padding: 10px 24px;
    border: 0;
    font-weight: 600;
}
.tabla .boton-edicion {
    background-color: #848484;
    color: #fff;
    padding: 10px 24px;
    border: 0;
    font-weight: 600;
}
.tabla .boton-ver {
    background-color: #2866db;
    color: #fff;
    padding: 10px 24px;
    border: 0;
    font-weight: 600;
}
.tabla .boton-edicion:disabled {
    background-color: rgba(132, 132, 132, 0.33);
}
.tabla .boton-eliminar {
    background-color: #f93345;
    color: #fff;
    padding: 10px 24px;
    border: 0;
    font-weight: 600;
}
.tablaexamenes .boton-ver,
.tablaexamenes .boton-eliminar,
.tablaempresas .boton-ver, .tablaempresas .boton-edicion, .tablaexamenes .boton-ver, .tablaexamenes .boton-edicion {
    display: block;
    width: 100%;
}
.tabla .boton-agregar {
    background-color: #28db6d;
    color: #fff;
    padding: 10px 24px;
    border: 0;
    font-weight: 600;
}
/* ## - Seccion - Grupo Botones */
.btn-group.seleccion {
    margin: 0 auto 15px;
}
.btn-group.seleccion .btn.btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff!important;
    background-color: #2866db!important;
    border-color: #2866db!important;
    border-radius: 0;
}
.btn-group.seleccion .btn.btn-primary.active {
    background-color: #041c4a!important;
    border-color: #041c4a!important;
    color: #fff!important;
}
/* ## - Seccion - Modales */
.modal .modal-content {
    border-radius: 0;
    border: 0;
}
.modal .modal-title {
    font-weight: 700;
    line-height: 1.2;
}
.modal label {
    display: block;
    font-size: .9rem;
}
.modal .form-control {
    border: 1px solid #fff;
    border-radius: 0;
    height: calc(2.5em + .75rem + 2px);
    background-color: rgba(3, 169, 244, 0.12);
}
.modal .img-thumbnail {
    width: 150px;
    border-radius: 0;
}
.modal .help-block {
    margin: 10px 0;
    font-size: .9rem;
    color: #4e4d4b;
}
.modal .boton-cerrar {
    font-size: 1rem;
    font-weight: 600;
    background-color: #dde0e4;
    border: 0;
    padding: 12px 25px;
    font-weight: 600;
    color: #000;
}
.modal .boton-aceptar {
    font-size: 1rem;
    font-weight: 600;
    background-color: #4e4d4b;
    border: 0;
    padding: 12px 25px;
    font-weight: 600;
    color: #fff;
}
.modal ul {
}
/* ## - Seccion - Modal: Login */
.modal.login {
}
.modal.login label {
    display: block;
    font-size: .9rem;
}
.modal.login .form-control {
    border: 1px solid #fff;
    border-radius: 0;
    height: calc(2.5em + .75rem + 2px);
    background-color: rgba(3, 169, 244, 0.12);
}
.modal.login .boton-sesion {
    display: block;
    margin: 0 auto;
    background-color: #4e4d4b;
    border: 0;
    padding: 15px 45px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}
.modal.login .boton-sesion:active,
.modal.login .boton-sesion:focus {
    background-color: #343433;
}
/* ## - Seccion - SweetAlert */
.swal-title {
    font-size: 2rem;
    font-weight: 700;
}
.swal-button-container {
    display: block;
}
/* ## - Seccion - Titulos */
.titulo-pagina {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 15px;
}
.subseccion {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 15px;
}

/* ## - Seccion - Tablas */
.tabla thead th {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    border: 0;
    border-radius: 0;
    /*
    background-color: #4e4d4b;
    */
    background-image: linear-gradient(to right bottom, #4e4d4b, #464441, #3e3c38, #36332f, #2e2b26);
    background-attachment:fixed;
    padding: 15px 5px;
}
table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before, table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before {
    background-color: #28db6d;
}
.tabla tbody th, .tabla tbody td {
    font-size: 1rem;
    padding: 15px 5px;
}
.dataTables_wrapper .dt-buttons.btn-group .btn-secondary {
    padding: 10px 12px;
    border: 0;
    border-radius: 0;
    background-color: #4e4d4b;
}
div.dataTables_wrapper div.dataTables_filter input {
    height: calc(2.1em + .5rem + 2px);
    border-radius: 0;
}
.dataTables_wrapper .dropdown-item, .dataTables_wrapper .dropdown-item.active, .dropdown-item:active {
    background-color: transparent!important;
    color: #343433!important;
}
.dataTables_wrapper .dropdown-menu {
    border: 1px solid #fff!important;
}
.tabla select {
    display: block;
    width: 100%;
    margin: 2px 0;
    border: 1px solid #fff;
    border-radius: 0;
    height: calc(2.5em + .75rem + 2px);
    background-color: rgba(3, 169, 244, 0.12);
}
/* ## - Seccion - Tablas: PlaceHolder */
.tabla thead .form-control {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.12);
}
.tabla thead .form-control::-webkit-input-placeholder {
    color: #fff;
    opacity: 1 !important;
}
.tabla thead .form-control::-moz-placeholder {
    color: #fff;
    opacity: 1 !important;
}
.tabla thead .form-control:-ms-input-placeholder {
    color: #fff;
    opacity: 1 !important;
}
.tabla thead .form-control:-moz-placeholder {
    color: #fff;
    opacity: 1 !important;
}
.page-item .page-link {
    border-radius: 0;
}
.page-item.active .page-link {
    border-color: #2e2b26;
    background-color: #2e2b26;
    color: #fff;
}
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin: 15px 0;
}
/* ## - Seccion - Tablas: Progreso */
.tabla .progress {
    background-color: #d6d8dc;
    border-radius: 0;
}
.tabla .progress-bar.bg-info {
    background-color: #2866db!important;
}
.tabla .progress-bar.bg-success {
    background-color: #28db6d!important;
}
.tabla .text-primary {
    color: #343433!important;
}
/* ## - Seccion - Tablas: Campos */
.tabla .campo-editable {
    border: 1px solid #fff;
    border-radius: 0;
    height: calc(2.5em + .75rem + 2px);
    background-color: rgba(3, 169, 244, 0.12);
}
.tabla .campo-editable:focus, .tabla .campo-editable:active {
    border: 1px solid #41d1dd;
}
/* ## - Seccion - Formulario */
.formulario label {
    display: block;
    font-size: .9rem;
}
.formulario .form-control {
    border: 1px solid #fff;
    border-radius: 0;
    height: calc(2.5em + .75rem + 2px);
    background-color: rgba(3, 169, 244, 0.12);
}
.formulario .boton-agregar {
    background-color: #4e4d4b;
    color: #fff;
    margin: 10px 0 25px auto;
    padding: 12px 25px;
    border: 0;
    font-weight: 600;
    border-radius: 46px;
}
.nueva-seccion {
    padding: 25px 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,.1);
}
.nueva-seccion.principal {
    border: 0;
}
.nueva-seccion .titulo-sub {
    display: inline-block;
    font-weight: 700;
    padding: 10px 35px;
    background-color: #4e4d4b;
    color: #fff;
}
.campo-editables {
    display: block;
    padding: 15px 10px;
    margin-bottom: 10px;
    border: 1px solid #fff;
    border-radius: 0;
    background-color: rgba(3, 169, 244, 0.12);
}
.campo-editables:focus, .campo-editables:active {
    border: 1px solid #41d1dd;
}

.textos {
    margin-bottom: 5px;
}
/*
## - Secciones
*/
/* ## - Seccion - Navbar */
.navbar {
    position: relative;
    z-index: 2;
    padding: 15px 25px;
    background-color: #fff;
}
.navbar .nav-item .nav-link {
    font-size: .9rem;
    color: #4e4d4b;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.navbar .navbar-brand img {
    width: 125px;
    height: auto;
}
.navbar .navbar-nav {
    margin-left: auto;
}
.navbar-toggler {
    background-color: #4e4d4b;
    font-size: .9rem;
    color: #f7f4ed;
    border-radius: 0;
    padding: 12px 15px;
}
/* Index */
.login.admin .navbar .nav-item .boton-modal {
    font-size: .9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    background-color: #4e4d4b;
    border: 0;
    padding: 12px 25px;
}
/* ## - Seccion - Login */
.login {
    
}
.login.admin {
    display: block;
    min-height: 100vh;
    background-color: #f7f4ed;
    background-image: url(../images/fondo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.login.admin .login-empresas {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}
.login.admin .boton {
    font-size: .9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    background-color: #28db6d;
    border: 0;
    padding: 18px 30px;
    margin: auto;
    text-decoration: none!important;
}
.login.admin .boton:hover, .login.admin .boton:focus, .login.admin .boton:active {
    background-color: #14bf56;
}

.login.empresas {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f7f4ed;
}
.login.empresas .formulario {
    width: 100%;
    max-width: 330px;
    padding: 25px 15px;
    margin: auto;
    background-color: #fff;
    box-shadow: 7px 6px 13px 0px #00000012;
}
.login.empresas .formulario img {
    display: block;
    margin: 0 auto 45px auto;
}
.login.empresas .formulario label {
    display: block;
    font-size: .9rem;
}
.login.empresas .formulario .form-control {
    border: 1px solid #fff;
    border-radius: 0;
    height: calc(2.5em + .75rem + 2px);
    background-color: rgba(3, 169, 244, 0.12);
}
.login.empresas .formulario .form-control:disabled,
.login.empresas .formulario .form-control[readonly] {
    background-color: #d6d8dc;
}
.login.empresas .formulario .boton-sesion {
    display: block;
    margin: 0 auto;
    background-color: #4e4d4b;
    border: 0;
    padding: 15px 45px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}
.login.empresas .formulario .boton-sesion:active,
.login.empresas .formulario .boton-sesion:focus {
    background-color: #343433;
}
/* ## - Seccion - Dashboard */
.datos-dashboard {
    margin-bottom: 20px;
}
.datos-dashboard p {
    margin: 0 0 5px;
}
.datos-dashboard p .badge {
    background-color: #1cdcc1;
}
.datos-dashboard .campo-ind {
    border-radius: 6px;
    padding: 24px 22px;
    margin-bottom: 15px;
    color: #fff;
    box-shadow: 1.847px 2.364px 6.09px 0.91px rgba(0, 0, 0, 0.1);
}
.datos-dashboard .campo-ind.empresas {
    background-image: linear-gradient(to right bottom, #cad1e3, #bbc5e2, #acb9e1, #9eade0, #90a1de);
}
.datos-dashboard .campo-ind.examenes {
    background-image: linear-gradient(to right bottom, #cae3e2, #ade4df, #8fe5d8, #70e6cd, #4fe5be);
}
.datos-dashboard .campo-ind .cantidad {
    font-size: 1.35rem;
    font-weight: 800;
    color: #343433;
    margin: 0 0 5px;
}
.datos-dashboard .campo-ind p {
    font-size: .9rem;
    color: #343433;
    margin: 0;
}
.datos.finales .dato-individual {
    border-radius: 6px;
    padding: 28px 22px;
    margin-bottom: 15px;
    color: #343433;
    box-shadow: 1.847px 2.364px 6.09px 0.91px rgba(0, 0, 0, 0.1);
}
.dato-individual.estilo1 {
    background-image: linear-gradient(to right bottom, #c3e7e2, #a5d0da, #93b8d1, #909cc1, #9480a6);
}
.dato-individual.estilo2 {
    background-image: linear-gradient(to right bottom, #9ceb95, #65e6cd, #74d9eb, #a4c8e6, #bcbccb);
}
.datos.finales .dato-individual p {
    font-size: 1rem;
    line-height: 1.2;
    color: #343433;
    margin: 0;
}
.datos.finales .dato-individual b {
    font-size: 1.95rem;
    font-weight: 800;
    color: #343433;
    margin: 0 0 5px;
}
.datos.textos {
    padding: 15px;
    margin-bottom: 20px;
    background-color: rgba(224, 224, 224, 0.34);
}
.datos.textos p {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #848484;
}
.datos.textos p > b {
    display: block;
    font-size: 1rem;
    text-transform: capitalize;
    letter-spacing: 0;
    color: #2a2d2f;
}
.datos.textos p span {
    
}


/* ## - Responsivo */
@media (max-width:1281px) {
    
}
@media (min-width:992px) {
    .login.admin .navbar-expand-lg .navbar-nav .nav-link {
        padding: 12px 25px;
    }
    .dataTables_wrapper .dt-buttons.btn-group {
        float: left;
    }
}

@media (max-width:991px) {
    .navbar .navbar-nav {
        padding: 15px 0;
    }
}
@media (max-width: 767px) {
    
}
@media (max-width: 575px) {
    .navbar .navbar-brand img {
        width: 90px;
    }
    .dataTables_wrapper .dt-buttons.btn-group .btn-secondary {
        font-size: .85rem;
    }
    div.dataTables_wrapper div.dataTables_filter {
        text-align: left!important;
    }
    .tabla thead th {
        padding: 10px 5px;
    }
    .btn-group.seleccion {
        display: block;
    }
    .btn-group.seleccion .btn.btn-primary {
        display: block;
        flex: 0;
        width: 100%;
    }
    .boton-regresar {
        position: relative;
        margin-bottom: 15px;
    }
    .boton-crear {
        margin: 0 0 25px 0;
    }
}
@media (max-width: 375px) {
    .boton-regresar {
        width: 100%;
        
    }
    .boton-crear {
        width: 100%;
    }
}

@media (min-width: 576px) {
    
    
    
}