/* INICIO TEMA MODIFICADO BOOTSTRAP */
/* ELEMTNOS HTML */
:root {
    /* AMARILLO */
    --secundario: #FEEEBC;
    --principal: #FFD56A;
    --claro: #C0CFEC;
    --gris: #E7ECF4;
    /* BOTONES */
    --verde: #393A60;
    --rojo: #F08373;
}

/* MENU */
.bg-personal{
    background-color: var(--principal);
}
/* FIN MENU */

/* PAGINADOR */
.pagination  .page-link{
    color: black;
}
.pagination .page-item.active .page-link{
    background-color: var(--secundario);
    border-color: var(--principal);
    color: black;
}
/* FIN PAGINADOR */

/* SIN COMPROBAR */

.card-body {background-color: var(--secundario); }

/* DEV EXTEREM KANBAN */
#kanban {
    white-space: nowrap;
}

#kanban .list {
    border-radius: 8px;
    margin: 5px;
    background-color: rgba(192, 192, 192, 0.4);
    display: inline-block;
    vertical-align: top;
    white-space: normal;
}

#kanban .list-title {
    font-size: 16px;
    padding: 10px;
    padding-left: 30px;
    margin-bottom: -10px;
    font-weight: bold;
    cursor: pointer;
}

#kanban .scrollable-list {
    height: 650px;
    width: 370px;
}

#kanban .sortable-cards {
    min-height: 380px
}

#kanban .card {
    position: relative;
    background-color: white;
    box-sizing: border-box;
    width: 340px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
}

#kanban .card-subject {
    padding-bottom: 10px;
    font-weight: bold;
}

#kanban .card-assignee {
    opacity: 0.6;
}

#kanban .card-priority {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 5px;
    width: 5px;
    border-radius: 2px;
    background: #86C285;
}

#kanban .priority-1 {
    background: #ADADAD;
}

#kanban .priority-2 {
    background: #86C285;
}

#kanban .priority-3 {
    background: #EDC578;
}

#kanban .priority-4 {
    background: #EF7D59;
}
/*FIN DEVEXTREM KANBAN */

/*COLORES ALTERNOS FILAS DIV*/
.table-row{
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.presupuestos .row{
    margin: 0;
}
.table-row div{
    text-align: center;
}

.table-row .form-group{
    margin-bottom: 0;
}
.table-row .form-group input{
    width: 90%;
}
.table-row:nth-of-type(odd)
{
    background-color: white;
}
.table-row:nth-of-type(even)
{
    background-color: rgba(0,0,0,.05);
}
/*FIN COLORES ALTERNOS FILAS DIV*/
