/*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;
}