/*estilo de las notas*/
.note {
    height: 115px;
    padding: 10px;       
    overflow: hidden;
    cursor: auto;
    font-weight: 500;
    font-size: 22px;        
    box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 15px;
}        

.blue {
    background-color: #A6E3FC;
    border: 0px solid #75C5E7;
    border-radius: 10px;
    margin: 0.4rem !important;
}

.white {
    background-color: #fff;
    border: 0px solid #dedede;
    border-radius: 10px;
    margin: 0.4rem !important;
}

.green {
    background-color: #a5f88b9c;
    border: 0px solid #98E775;
    border-radius: 10px;
    margin: 0.4rem !important;
}

.yellow {
    background-color: #fdfb8ca1;
    border: 0px solid #DEDC65;
    border-radius: 10px;
    margin: 0.4rem !important;
}

.red {
    background-color: #ff4f4f6e;
    border: 0px solid rgb(248, 6, 6);
    border-radius: 10px;
    margin: 0.4rem !important;
}

.note-form label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.note-form .color {        
    cursor: pointer;
    float: right;
    height: 14px;
    margin: 0 5px 0 0;
    width: 14px;
}

.card-note {       
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #f5f6f8;
}

.notas-title {
    font-weight: 900;
    color: #757575;
}

.notas-fecha {
    font-weight: 500;
    color: #757575;
    font-size: 0.85em;
}

.notas-descripcion {
    font-weight: 500;
    color: #757575;
    font-size: 0.8em
} 

.sombra_movil:hover {
    transform: translateY(-5px);
    animation: 5s movercaja infinite;
}

@keyframes movercaja {
    50% {
        transform: translateY(-3px);
    }
}

.trash {
    color: #ed1b2f !important;
}

.edit {
    color: #158B40 !important;
}


/* CONTENEDOR SUPERIOR (LENGTH + FILTER) */
/* .dataTables_wrapper .dataTables_filter, 
.dataTables_wrapper .dataTables_length {
    margin-bottom: 1rem;
} */

.table.dataTable thead th {
    text-align: center;
}

.table-responsive{
    margin: 0 0 2.5rem;
}

/* INPUT BUSCADOR */
.dataTables_wrapper .dataTables_filter label {
    display: inline;
}

.dataTables_wrapper .dataTables_filter input {
    /* padding: 0.5rem 0.75rem; */
    /* border: 1px solid #d1d5db; */
    border-radius: 0.3rem;
    background-color: #f9fafb;
    transition: all 0.2s;
    /* margin-left: 0.5rem;
    width: 90vh; */
}

/* SELECTOR DE LONGITUD */
.dataTables_wrapper .dataTables_length select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    /* border: 1px solid #d1d5db; */
    border-radius: 0.3rem;
    background-color: #f9fafb;
    margin: 0 0.5rem;
}

.dataTables_wrapper .dataTables_paginate{
    margin: 0 0 .5rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.5rem 1rem;
    margin: 0 0.1rem;
    border-radius: 0.25rem;
    border: 1px solid #afb0b1;
    background-color: #dfe0e2;
    color: #000;
}

.dataTables_wrapper .dataTables_paginate .previous{
    background-color: #afb0b1;
    border-radius: 0.25rem;
}
.dataTables_wrapper .dataTables_paginate .next{
    background-color: #afb0b1;
    border-radius: 0.25rem;
}


.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #2ebfff;
    color: #fff;
}

