
/*-GENERAL*/

:root{
    --fondo: #f2f2f2;
    --menu: #ffffff;
    --gris: #596771;
}


@font-face {
  font-family: Montserrat;
  src: url(../fuente/Montserrat/Montserrat-Regular.ttf);
}

html, body {
    top: 0;
    background-color: var(--fondo);
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    margin: 0;
}

#main{
    margin-top: 100px;
}

.row{
    margin: 0;
}

#app {
    margin-top:40px!important;
    height:calc(100vh - 45px);
    width:100%;
    position: fixed;
    overflow-y: auto;
    top: 0;
}

.page-header{
    margin-top:0px;
}

.page-header h1{
    margin-top:0px;
}

.navbar-inverse .navbar-toggle {
    margin-top:2px;
}

.tooltip_interrogacion {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0;
    font-size: 9px;
}

.errorCajaContrasenia{
    border: 1px solid red;
}

a{
    cursor: pointer;
}

th.rotar {
    height: 200px !important;
    white-space: nowrap;
}

th.rotar > div {
    transform:
    /* translate(2px, 175px) */
    rotate(270deg);
    width: 25px !important;
}

th.rotar > div > span {
    padding: 5px 10px;
}

.modal-body{
    overflow: auto;
}

/*-GENERAL*/


/*-MODAL*/

@media (min-width: 768px) {
    .modal-xl {
        width: 90vw;
    }
}

@media (min-width: 1300px) {
    .modal-xl {
        width: 1250px;
    }
}

/*-MODAL*/


/*-MENÚ*/

.menu-app{
    background-color: var(--menu);
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    border-radius: 0;
    border: 0;
    z-index: 1000;
}

.menu-app .navbar-collapse{
    height: 100px;
    min-height: 100px;
}

.menu-app .navbar-header, .menu-app .navbar-nav, .menu-app .navbar-brand{
    padding: 5px;
    height: 100px;
    min-height: 100px;
}

.menu-app .navbar-brand img{
    height: 80px;
    border-radius: 5px;
}

.menu-app > .container-fluid > .navbar-header > .navbar-brand{
    height:40px;
    padding: 10px;
}

.menu-app li > a{
    height:40px;
    padding: 10px;
}

.menu-app .navbar-nav > li > a{
    color: #ffffff!important;
}

.menu-app .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus{
    background-color: #596771!important;
}

/*-MENÚ*/


/*-PÁGINA ERROR*/

.c-error{
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    .contenido{
        background-color: var(--menu);
        width: 40vw;
        height: 40vh;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        .t{
            font-size: 5em;
        }
        .txt{
            font-size: 1em;
        }
    }
}

/*-PÁGINA ERROR*/


/*-DATATABLE*/

.dataTables_processing {
    z-index: 3000 !important;
    top: unset!important;
}

table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:before {
    content : none;
}

table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after{
    content : none;
}

table.dataTable thead>tr>th.sorting_asc, table.dataTable thead>tr>th.sorting_desc, table.dataTable thead>tr>th.sorting, table.dataTable thead>tr>td.sorting_asc, table.dataTable thead>tr>td.sorting_desc, table.dataTable thead>tr>td.sorting{
    padding-right: 4px;
}

.table{
    margin: 0;
}

.table_modal{
  min-width: 100% !important;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td{
    padding: 4px;
    padding-left: 4px;
    min-width: 80px;
}

.etiquetaColumnaDatatable{
  cursor: default;
  width: 100%;
  padding: 6px;
  font-size: 100%;
  line-height: 0.8;
  top: 0;
  float: left;
  border: 0;
  background-color: transparent;
  font-weight: bold;
}

.orderButtonDatatable{
    white-space: nowrap!important;
    cursor: pointer;
    width: 20px;
    height: 20px!important;
    font-size: 100%;
    line-height: 0.8;
    background-color: #ffffff;
    padding: 0!important;
}

.searchBoxDatatable{
    white-space: nowrap!important;
    width: 50%;
    height: 20px;
    min-width: 50px;
    padding: 0px;
    text-align: center;
    font-size: 100%;
    line-height: 0.8;
}

.dataTables_wrapper .form-control{
    height: 20px;
    padding: 0;
    font-size: 100%;
}

.pagination > li > a, .pagination > li > span{
    padding: 1px;
    padding-left: 5px;
    padding-right: 5px;
}

table.dataTable .btn-xs, .btn-group-xs > .btn{
   font-size: 100%;
   height: 22px;
}

.dataTables_wrapper{
    overflow-x: auto;
}

.accionOrdenar{
    padding-right: 25px!important;
}

/*-DATATABLE*/

