/* animacion alerta */
@keyframes animacion-color-success {
    0% {
        background-color: black;
        top: -5px;
        transform: translate(0, -100%);
    }
    20% {
        background-color: black;
        top: -5px;
        transform: translate(0, -100%);
    }
    100% {
        background-color: green;
        top: 0px;
        transform: translate(0, 0%);
    }
}
@keyframes animacion-color-warning {
    0% {
        background-color: black;
        top: -5px;
        transform: translate(0, -100%);
    }
    20% {
        background-color: black;
        top: -5px;
        transform: translate(0, -100%);
    }
    100% {
        background-color: orangered;
        top: 0px;
        transform: translate(0, 0%);
    }
}
@keyframes animacion-color-danger {
    0% {
        background-color: black;
        top: -5px;
        transform: translate(0, -100%);
    }
    20% {
        background-color: black;
        top: -5px;
        transform: translate(0, -100%);
    }
    100% {
        background-color: darkred;
        top: 0px;
        transform: translate(0, 0%);
    }
}
@keyframes animacion-color-info {
    0% {
        background-color: black;
        top: -5px;
        transform: translate(0, -100%);
    }
    20% {
        background-color: black;
        top: -5px;
        transform: translate(0, -100%);
    }
    100% {
        background-color: dodgerblue;
        top: 0px;
        transform: translate(0, 0%);
    }
}
@keyframes animacion-desaparece {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
/* The element to apply the animation to */
.mensaje-alerta{
    width: 800px;
    max-width: 100%;
    /*height: 100px;*/
    background-color: black;
    position: fixed;
    top: 0px;
    transform: translate(0, 0%);
    left: calc(60% - (400px));
    color: white;
    padding: 30px 30px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    z-index: 1050;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.3);
}
.btn-cerrar{
    color: white;
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 20px;
}
.mensaje-success {
    animation-name: animacion-color-success;
    animation-duration: 3s;
    background-color: green;
}
.mensaje-warning {
    animation-name: animacion-color-warning;
    animation-duration: 3s;
    background-color: orangered;
}
.mensaje-danger {
    animation-name: animacion-color-danger;
    animation-duration: 3s;
    background-color: darkred;
}
.mensaje-info {
    animation-name: animacion-color-info;
    animation-duration: 3s;
    background-color: dodgerblue;
}
.mensaje-cerrar {
    animation-name: animacion-desaparece;
    animation-duration: 2s;
    opacity: 0;
}
/* fi animacion alerta */


.overflow-hidden{
    overflow: hidden;
}
.u-file-attach-v1 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.u-file-attach-v1 input[type="file"] {
    position: absolute;
    top: -25%;
    left: -25%;
    z-index: 10;
    width: 150%;
    height: 150%;
    opacity: 0;
    cursor: pointer;
}
.u-file-attach-v1 input[readonly] {
    background-color: transparent;
}
.input-group-append {
    margin-left: -1px;
}
/*
.u-btn-primary {
    color: #fff;
    background-color: #24baef;
}
*/
.g-color-lightgray{
    color: #999 !important;
}
.g-color-mediumgray{
    color: #666 !important;
}
.g-color-darkgray{
    color: #333 !important;
}
table.dataTable.display tbody tr.g-bg-gray-light-v3>.sorting_1, table.dataTable.order-column.stripe tbody tr.g-bg-gray-light-v3>.sorting_1 {
    background-color: #a4c697 !important;
}
table.dataTable.display tbody tr.odd>.sorting_1, table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
    background-color: #cee5c5;
}
table.dataTable.display tbody tr.even>.sorting_1, table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
    background-color: #e0f2da;
}
.radiolist label {
    font-weight: normal;
    margin-right: 10px;
}
.custom-radio{
    display: inline-block;
}

.word-break{
    word-break: break-all;
}
.min-width-60{
    min-width: 60px !important;
}


.lista-horizontal li{
    display: inline;
}
/* datatables */
.dataTables_length, .dataTables_filter, .dataTables_info, .dataTables_paginate {
    display: block;
}
.dataTables_wrapper .dataTables_processing {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 30%;
    height: 40px;
    margin-left: -20%;
    margin-top: -25px;
    padding-top: 20px;
    text-align: center;
    font-size: 1.2em;
    background:none;
}
/* fi datatables */
.bola{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.note-group-select-from-files { display: none; }

.campo-color{
    font-weight: bold;
    font-size: 14px;
    color: white;
    text-shadow: -1px -1px 1px #000, 1px 1px 1px #000, -1px 1px 1px #000, 1px -1px 1px #000;
    padding: 3px 10px;
    /*background-color: #ff0000;*/
}
.sp-preview {
    width: 170px;
    height: 25px;
}