:root {
    --color-azul: #1D3341;
    --color-celeste: #2B84A2;
    /* Colores version anterior */
    --color-santa_cruz: #252C61;
    --color-institucional-secundario: #80B0DE;
    --color-gris: rgb(128, 130, 133);
    --color-mandarina: #FEC25C;
    --color-verde-lima: #CADB36;
    --color-turquesa: #50B8B1;
    --color-rosa: #F17DB1;
    --color-lila: #AB9FC5;
    --color-rojo: #C44228;
    --color-verde: #337C58;
    --color-amarillo: #CD9F2B;
}


.lista-viñeta {
    list-style: unset;
}
.lista-sin-iconos {
    list-style: none;
}
.alert-mensaje{
    background-repeat: no-repeat;
    position: fixed;
    bottom: 5px;
    left: 20px;
    font-size: larger;
    z-index: 99;
}
/*------------------------------------------------ Btn ir arriba -------------------------------------------- */
.ir-arriba{
    display:none;
    background-repeat:no-repeat;
    font-size:26px;
    color: var(--color-gris);
    cursor:pointer;
    position:fixed;
    bottom:15px;
    right:30px;
    z-index:2;
  }

.ir-arriba:hover{
    color: #767676;
}

/*------------------------------------------------ Lista --------------------------------------------------- */
.table-click {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.12), 0 1px 3px 1px rgba(60,64,67,0.15);
}
.fila-click:hover {
    cursor: pointer;
    -webkit-transition: transform 2s ease-in-out;
    color: rgb(44, 44, 44) !important;
    background-color: rgb(211, 211, 211) !important;
}
.fila-click:active {
    box-shadow: 3px 2px 12px 1px rgba(0, 0, 0, 0.24);
}

td {
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal;
}
/*------------------------------------------------ Paginacion --------------------------------------------------- */

.page-item.active .page-link{
    background-color: var(--color-azul);
    border-color: var(--color-azul);
}

.page-link{
    color: var(--color-azul);
}