/*///////////////////
ESTILO TABLA BORDER SPACING
//////////////////////////*/

.table_default {
    padding: 5px 10px;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    font-size: 12px;
}



table.table_default td, table.dataTable th{
    padding: 0.75rem;
    vertical-align: middle;
    line-height: 1.462;
    font-weight: 500;
}

table.dataTable th {
    font-weight: 600;
}

.table_default tr:nth-child(even) { 
    background: var(--table-th-bg);
    margin: 0px 0;
}

.table_default tr {
    border-radius: 6px;
    background: #F8F8F8;
    margin: 0px 0;
}
.table_default tr:hover {
    background: #e5e5e5;
}



/*////////
PAGINATION
///////////*/

ul.pagination {
    list-style: none;
    display: flex;
    gap: 10px;    
}

.page-item a {
    border: 1px  solid #e1e1e1;
    padding: 5px 15px;
    font-weight: 500;
    border-radius: 5px;
    font-size: 12px;
}

.page-item.active a {
    background: var(--main);
    color: white;
    border: 0;
}

.page-item.previous a, .page-item.next a {
  border: 0;
}

.dataTables_info {
    font-size: 11px;
}


/*===================/*
SALES TABLE CUSTOM             
=====================*/

.box_short {
  display: block;
  width: 120px;
  font-size: 12px;
}
   
.pagos_p span:last-child {
  font-size: 80%;
  color: #898989;
}

.pagos_p span {
    display: block;
}


/*///
BUSCADOR
////////*/

div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 20px;
    display: inline-block;
    width: auto;
    border-radius: 10px;
    padding: 12px 20px;
    border: 0;
    margin-bottom: 10px;
    width: 300px;
    border: 1px solid #e1e1e1c7;
}


/*///////////
BUTTONS FOR TABLES
/////////////////*/

.bt_icon {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-content: center;
    border-radius: 50%;
    margin: 0 5px;
}


/*////
BADGET FOR TABLES
/////*/
.badget {
    padding: 2px 6px;
    display: inline-block;
    border-radius: 12px;
}

.badget.negative {
    background: #ffccc8;
    color: red;
}

.badget.positive {
    background: #adffb0;
    color: green;
}


/*/////
SELECT 2 DEMO
//////*/
.inscripcion {
    width: 30%;
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid #b3b3b3;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

div#inscripcionesContainer {
    display: flex;
    gap: 3%;
    flex-wrap: wrap;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: inherit;
    line-height: inherit;
    font-size: 13px;
    
}

.select2-container--default .select2-selection--single {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 10px;
    padding: 10px 14px;
    height: inherit !important;
}