/* Tabla */
.table thead th{
    background: #FCFCFC;
    border-bottom: 3px solid #dee2e6;
}
.table thead th,
.table thead th a{
    color: #707070;
    font-weight: 600;
}
.table thead th .fa{
    color: #B8B8B8;
    padding-left: 5px;
}

.table thead th.active{
    border-bottom-color: #3E3E3E;
}
.table thead th.active,
.table thead th.active a{
    color: #3E3E3E;
}
.table thead th.active .fa{
    color: #3E3E3E;
}

/* Cortar texto en el head */
.table thead th {
    max-width: 100px;
}
.table thead th a{
    display:flex;
    align-items: center;
}
.table thead th a span{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.table thead th a .fa{
    width: 15px;
}

/* Footer */
.table tfoot td {
    background: rgba(0,0,0,0.01);
    color: #000;
    font-weight: 700;
}

/* Seleccionar columnas */
.dropdown-menu-columns{
    min-width: 500px;
    padding: 0.25rem;
}
.dropdown-menu-columns .form-group{
    margin-bottom: 0;
    cursor: pointer;
    padding: 0.25rem 0.5rem;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dropdown-menu-columns .form-group label{
    display: inline;
    cursor: pointer;
}

/* Paginacion */
.pagination-div .select2-container--bootstrap .select2-selection--single{
    border-color: #dee2e6;
}

.pagination-div .pagination .page-link{
    line-height: 1.25rem;
    padding-top: 0.40625rem;
    padding-bottom: 0.40625rem;
}
.pagination-div .pagination .linkNotAllowed{
    cursor: not-allowed;
    opacity: 0.5;
}
.pagination-div .pagination .linkNotAllowed a{
    pointer-events: none;
}
.pagination-div .pagination .active a{
    cursor: not-allowed !important;
}

.pagination-div .pagination select{
    min-width: 150px;
}

.pagination-div .pagination .select2-container--bootstrap .select2-selection--single{
    border-radius: 0;
    border-left: 0;
}

/* Filtros */
.search .filter-button{
    position: relative;
}
.search .filter-button .badge{
    position: absolute;
    top: -5px;
    right: -5px;
    background: #DA291C;
    color: #fff;
}
.filter-col-actions{
    display: flex;
    flex-direction: row-reverse;
}
.filter-col-actions .btn-search{
    align-self: flex-end;
}

.search .input-group{
    flex-direction: row-reverse;
}
.search .input-group > :nth-child(1){
    border-color: #000;
    border-radius: 0 0.25rem 0.25rem 0;
    border-left: 0;
    padding-left: 0;
}
.search .input-group > :nth-child(2){
}
.search .input-group > :nth-child(2) > .btn{
    border-radius: 0.25rem 0 0 0.25rem;
    border-right: 0;
}
