::-webkit-scrollbar{
    width: 5px;
    height: 10px;
    background-color: #000;
}
::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb{
    background-color: #000;
    background-image: -webkit-linear-gradient(90deg,rgba(255, 255, 255, .2) 25%,transparent 25%,transparent 50%,rgba(255, 255, 255, .2) 50%,rgba(255, 255, 255, .2) 75%,transparent 75%,transparent)
}




.tooltipUped{
    position: relative;
    display: inline-block;

}

.tooltiptextAbajo{
    visibility: hidden;
    width: 140px;
    background-color: black;
    color: #fff;
    text-align: center;
    font-size: 12px !important;
    border-radius: 6px;
    padding: 5px 0;
    left: 50%;
    bottom: -190%;
    margin-left: -70px;
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: .5s;
}
.tooltipUped:hover .tooltiptextAbajo{
    visibility: visible;
    opacity: 1;
}
.tooltipUped .tooltiptextAbajo::after{
    content: " ";
    position: absolute;
    top: -45%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black  transparent;
}


.tooltiptext{
    visibility: hidden;
    min-width: 140px;
    width: auto;
    background-color: black;
    color: #fff;
    text-align: center;
    font-size: 12px !important;
    border-radius: 6px;
    padding: 5px 5px;
    left: 50%;
    bottom: 110%;
    margin-left: -70px;
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: .5s;
}
.tooltipUped:hover .tooltiptext{
    visibility: visible;
    opacity: 1;
}
.tooltipUped .tooltiptext::after{
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}












#cargando{
    background: #000000a6;
    position: fixed;
    /* left: 43%; */
    top: 0;
    width: 100%;
    height: calc(100%);
    vertical-align: middle;
    text-align: center;
    margin-top: -25px;
    margin-left: -25px;
    overflow: none;
    /* border: 1px solid #212529; */
    z-index: 7777;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -khtml-border-radius: 3px;
    box-shadow: 0px 0px 30px grey;
    -webkit-box-shadow: 0px 0px 30px grey;
    -moz-box-shadow: 0px 0px 30px gray;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

#cargandoEliminar{
    background: #000000a6;
    position: fixed;
    /* left: 43%; */
    top: 0;
    width: 100%;
    height: calc(100%);
    vertical-align: middle;
    text-align: center;
    margin-top: -25px;
    margin-left: -25px;
    overflow: none;
    /* border: 1px solid #212529; */
    z-index: 7777;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -khtml-border-radius: 3px;
    box-shadow: 0px 0px 30px grey;
    -webkit-box-shadow: 0px 0px 30px grey;
    -moz-box-shadow: 0px 0px 30px gray;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}




/******************************
 * FLEXBOX STYLES
 * ******************************/
.dice {
    display: flex;
    margin-top: calc(15%);
    justify-content: center;
}

.face {
    display: flex;
    width: 4rem;
    height: 4rem;
    margin: 0 0.7rem;
    padding: 0.5rem;
    border-radius: 5px;
    opacity: 0;
}
.face .dot {
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border-radius: 50%;
}
.face:nth-child(1) {
    border: 1px solid #fff;
    -webkit-animation: waves 3s linear infinite;
    animation: waves 3s linear infinite;
}
.face:nth-child(1) .dot {
    background: #fff;
}
.face:nth-child(2) {
    border: 1px solid #fff;
    -webkit-animation: waves 3s 0.2s linear infinite;
    animation: waves 3s 0.2s linear infinite;
}
.face:nth-child(2) .dot {
    background: #fff;
}
.face:nth-child(3) {
    border: 1px solid #fff;
    -webkit-animation: waves 3s 0.4s linear infinite;
    animation: waves 3s 0.4s linear infinite;
}
.face:nth-child(3) .dot {
    background: #fff;
}
.face:nth-child(4) {
    border: 1px solid #fff;
    -webkit-animation: waves 3s 0.6s linear infinite;
    animation: waves 3s 0.6s linear infinite;
}
.face:nth-child(4) .dot {
    background: #fff;
}
.face:nth-child(5) {
    border: 1px solid #fff;
    -webkit-animation: waves 3s 0.8s linear infinite;
    animation: waves 3s 0.8s linear infinite;
}
.face:nth-child(5) .dot {
    background: #fff;
}
.face:nth-child(6) {
    border: 1px solid #fff;
    -webkit-animation: waves 3s 1s linear infinite;
    animation: waves 3s 1s linear infinite;
}
.face:nth-child(6) .dot {
    background: #fff;
}

.first-face {
    justify-content: center;
    align-items: center;
}

.second-face {
    justify-content: space-between;
}
.second-face .dot:last-of-type {
    align-self: flex-end;
}

.third-face {
    justify-content: space-between;
}
.third-face .dot:nth-child(2) {
    align-self: center;
}
.third-face .dot:last-of-type {
    align-self: flex-end;
}

.fourth-face {
    justify-content: space-between;
}
.fourth-face .column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fifth-face {
    justify-content: space-between;
}
.fifth-face .column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fifth-face .column:nth-child(2) {
    justify-content: center;
}

.sixth-face {
    justify-content: space-between;
}
.sixth-face .column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*******************************************************/
@-webkit-keyframes waves {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    4% {
        transform: translateY(-25px);
        opacity: 1;
    }
    8% {
        transform: translateY(0);
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
}
@keyframes waves {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    4% {
        transform: translateY(-25px);
        opacity: 1;
    }
    8% {
        transform: translateY(0);
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
}





:root {
    --yellow: #FFFFFF;
    --red: #c41e2c;
    --blue: #1e5ab1;
    --violet: #6d6d6d;
}

div.containery {
    display: flex;
    justify-content: center;
    align-items: center;
}
div > .div1 {
    width: 3vw;
    height: 3vw;
    border-radius: 100%;
    margin: 20vw 20px 0px 10px;
    background-image: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(0, 0, 0, 0) 100%
        );
    animation: bounce 1.5s 0.5s linear infinite;
}
.yellow1 {
    background-color: var(--yellow);
}

.red1 {
    background-color: var(--red);
    animation-delay: 0.1s;
}

.blue1 {
    background-color: var(--blue);
    animation-delay: 0.2s;
}

.violet1 {
    background-color: var(--violet);
    animation-delay: 0.3s;
}

@keyframes bounce {
    0%,
    50%,
    100% {
        transform: scale(1);
        filter: blur(0px);
    }
    25% {
        transform: scale(0.6);
        filter: blur(3px);
    }
    75% {
        filter: blur(3px);
        transform: scale(1.4);
    }
}



























.cont {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: Translate(-50%, -50%);
}

#btn-eliminar {
    background-color: #ff4757;
    color: #6b0f0f;
    border-bottom: 6px solid #6b0f0f;
    border-top: 5px solid #576574;
    width: 220px;
    font-size: 28px;
    padding: 15px 0px 15px 35px;
    border-radius: 0px 0px 15px 15px;
    box-shadow: 0px 0px 15px 1px rgba(214, 48, 49, 0.6);
    position: relative;

}

#btn-eliminar:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #c8d6e5;
    top: -3px;
    left: 0;
    position: absolute;
}

.loader {
    position: absolute;
    top: 30px;
    left: 34px;
}

#btn-eliminar .loader div {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #6b0f0f;
    position: absolute;
    transform-origin: -8px;
    animation: light 3s linear infinite;
}

#btn-eliminar .loader div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: 0s;
}

#btn-eliminar .loader div:nth-child(2) {
    transform: rotate(60deg);
    animation-delay: 0.5s;
}

#btn-eliminar .loader div:nth-child(3) {
    transform: rotate(120deg);
    animation-delay: 1s;
}

#btn-eliminar .loader div:nth-child(4) {
    transform: rotate(180deg);
    animation-delay: 1.5s;
}

#btn-eliminar .loader div:nth-child(5) {
    transform: rotate(240deg);
    animation-delay: 2s;
}

#btn-eliminar .loader div:nth-child(6) {
    transform: rotate(300deg);
    animation-delay: 2.5s;
}

@keyframes light {
    0% {
        background-color: #6b0f0f;
    }
    40% {
        background-color: #6b0f0f;
    }
    50% {
        background-color: white;
    }
    60% {
        background-color: #6b0f0f;
    }
    100% {
        background-color: #6b0f0f;
    }
}

.paper {
    width: 150px;
    height: 160px;
    box-shadow: 0px 0px 10px 1px rgba(55, 55, 55, 0.3);
    left: 0;
    right: 0;
    margin: auto;
    animation: paper 4s ease infinite;
    position: absolute;
    transform-origin: top;
    transform: translateY(0px) rotate(180deg);
    background-color: #fff;
}

.g-cont {
    margin: 0 auto;
    width: 150px;
    text-align: center;
    position: absolute;
    top: 73px;
    left: 10px;
    right: 0;
    margin: auto;
    z-index: 10;
}

.garbage {
    height: 160px;
    width: 6px;
    box-shadow: 0px 0px 10px 1px rgba(55, 55, 55, 0.3);
    display: inline-block;
    vertical-align: top;
    margin-right: 9px;
    animation: garbage 4s ease infinite;
    background-color: #fff;
}

@keyframes garbage {
    0% {
        height: 0px;
        transform: translateY(0px);
        opacity: 0;
    }
    20% {
        height: 0px;
        transform: translateY(0px);
        opacity: 1;
    }
    70% {
        height: 160px;
        transform: translateY(0px);
        opacity: 1;
    }
    90.1% {
        height: 160px;
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        height: 0px;
        opacity: 0;
    }
}

@keyframes paper {
    0% {
        height: 160px;
        opacity: 0;
        transform: translateY(-100px) rotate(180deg);
    }
    20% {
        height: 160px;
        opacity: 1;
        transform: translateY(0px) rotate(180deg);
    }
    70% {
        height: 0px;
        opacity: 1;
        transform: translateY(0px) rotate(180deg);
    }
    70.1% {
        height: 0px;
        opacity: 0;
        transform: translateY(0px) rotate(180deg);
    }
    100% {
        height: 160px;
        opacity: 0;
        transform: translateY(-100px) rotate(180deg);
    }
}







.bg-colegio-azul{
    background: #2e3094 !important;
}
.bg-colegio-gris{
    background: #666666 !important;
}

.bg-colegio-rojo{
    background: #ce1e2a !important;
}
.bg-colegio-azul-hover:hover{
    background: #2e3094 !important;
    color: #fff;
}

.bg-colegio-gris-hover:hover{
    background: #777777 !important;
    color: #fff;
}

.bg-colegio-rojo-hover:hover{
    background: #ce1e2a !important;
    color: #fff;
}












.min-height-100 {
    min-height: 100px !important;
}
.min-height-150 {
    min-height: 150px !important;
}

.min-height-200 {
    min-height: 200px !important;
}
.min-height-250 {
    min-height: 250px !important;
}

.min-height-300 {
    min-height: 300px !important;
}

.min-height-350 {
    min-height: 350px !important;
}

.min-height-400 {
    min-height: 400px !important;
}

.min-height-450 {
    min-height: 450px !important;
}
.min-height-500 {
    min-height: 500px !important;
}
.min-height-550 {
    min-height: 550px !important;
}
.min-height-600 {
    min-height: 600px !important;
}

.min-height-650 {
    min-height: 650px !important;
}


.min-height-700 {
    min-height: 700px !important;
}


.min-height-750 {
    min-height: 750px !important;
}

.min-vh-60 {
    min-height: 60vh !important;
}

.min-vh-70 {
    min-height: 70vh !important;
}

.min-vh-80 {
    min-height: 80vh !important;
}


.min-vh-85 {
    min-height: 85vh !important;
}


.min-vh-90 {
    min-height: 90vh !important;
}


.min-vh-95 {
    min-height: 95vh !important;
}

.bottom-0{
    bottom: 0;
}

.max-vh-95 {
    max-height: 95vh !important;
}

.max-vh-100 {
    max-height: 100vh !important;
}

.max-vh-110 {
    max-height: 110vh !important;
}




#primary-menu {
    top: 0;
    display: flex;
    height: 100%;

    li {
        margin: 0 0px;
        position: relative;

        a {
            text-decoration: none;
            display: block;
            padding: 5px 0;

            font-size: 18px;
            line-height: 1;
            font-weight: bold;
            position: relative;
            z-index: 1;
            text-align: center;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-image: linear-gradient(
                to right,
                #2196F3,
                #2196F3  50%,
                #000 50%
                );
            background-size: 200% 100%;
            background-position: -100%;
            transition: all 0.6s ease-in-out;
            &:before {
                display: block;
                content: "";
                width: 0;
                height: 3px;
                bottom: 5px;
                left: 0;
                bottom: -3px;
                z-index: 0;
                position: absolute;
                background: #2196F3 ;
                transition: all 0.6s ease-in-out;
            }
            &:hover {
                background-position: 0%;
                &:before {
                    width: 100%;
                }
            }
        }
    }
}




table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.01);
}



.table-bordered-todo {
    border: 1px solid #e3ebf3;
}

.table-bordered-todo th, .table-bordered-todo td {
    border: 1px solid #e3ebf3;
}


.bg-actividad-1{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-actividad-2 {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-actividad-3 {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}


.bg-Si {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-No {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}


.bg-pedido-1{
    background-color: #ff7531;
}

.bg-pedido-2{
    background-color: #5ce93f;
}


.bg-Aceptado {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-A-Condicion{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-Rechazado {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-Pendiente {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}


/*puntual*/
.bg-asis-1{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
/*ausente*/
.bg-asis-2{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
/*tarde*/
.bg-asis-3 {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
/*permiso*/
.bg-asis-4{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}


.badge-pedido-ENTREGADO{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.badge-pedido-PENDIENTE{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}


.badge-pedido-CANCELADO{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}




.bg-Activo  {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-Inactivo {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}


.modal-simple .btn-close {
    right: -1.5rem;
}

.modal-simple .btn-close {
    position: absolute;
    top: 0rem !important;
    right: 0rem !important;
}

.modal .btn-close {
    background-color: #9b9ba5;
    border-radius: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='?-%5BSetup%5D:-Colors-&amp;-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='%23ffffff' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='0.5' fill='%23ffffff' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    padding: 1.5rem;
    box-shadow: 0 0.0625rem 0.3175rem 0 rgba(34, 48, 62, 0.06);
    background-size: 1.2rem 1.2rem;
    transition: all 0.23s ease 0.1s;
}


.modal .btn-close:hover {
    background-color: #5a5c5e;

}


.dt-buttons.btn-group button {
    border-color: transparent !important;
    border-radius: 1.375rem 22px !important;
}


.nav-align-top .nav-tabs {
    padding: 1rem;
}

.form-check-input:checked {
    background-color: #60a718;
    border-color: #60a718;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(105, 108, 255, 0.4);
}

.form-check-input {
    width: 40px !important;
    height: 20px !important;
}


.menu-vertical .menu-item .menu-link {
    font-size: 12px;
    min-height: 2.625rem;
}

.input-group-text {
    color: #ced1d5;
}

.w-px-38{
    width: 39px !important;
}

.w-px-165{
    width: 165px !important;
}

.w-px-175{
    width: 175px !important;
}
.h-px-38{
    height: 38px !important;
}



.w-33-33 {
    width: 33.33% !important;
}
.w-40 {
    width: 40% !important;
}


.btn-purple {
    color: #fff !important;
    border-color: transparent;
    background: #ea00f1;
}
.btn-purple:hover {
    border-color: transparent !important;
    background: #b902bf !important;
    color: #fff !important;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(3, 195, 236, 0.4) !important;
}

.btn-label-purple {
    color: #ea00f1 !important;
    border-color: transparent;
    background: #fbd7fc;
}

.btn-label-purple:hover {
    border-color: transparent !important;
    background: #ea00f1 !important;
    color: #fff !important;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(3, 195, 236, 0.4) !important;
}


.btn-label-yellow {
    color: #7c5817 !important;
    border-color: transparent;
    background: #f5f493;
}

.btn-label-yellow:hover {
    color: #fff !important;
    border-color: transparent;
    background: #d9c019;
}
.btn-label-yellow:focus {
    color: #fff !important;
    border-color: transparent;
    background: #d9c019;
    outline: none;
}

.btn-label-yellow:active {
    color: #fff !important;
    border-color: transparent;
    background: #d9c019;
}


.btn-label-rose {
    color: #65414c !important;
    border-color: transparent;
    background: #ffafa4;
}

.btn-label-rose:hover {
    color: #fff !important;
    border-color: transparent;
    background: #8b433c;
}
.btn-label-rose:focus {
    color: #fff !important;
    border-color: transparent;
    background: #8b433c;
    outline: none;
}

.btn-label-rose:active {
    color: #fff !important;
    border-color: transparent;
    background: #8b433c;
}




.btn-label-cyan {
    color: #116e8d !important;
    background-color: rgb(167, 238, 250);
    border-color: rgb(107, 224, 245);
}

.btn-label-cyan:hover {
    color: #fff !important;
    border-color: rgb(107, 224, 245);
    background: #0c89ae;
}
.btn-label-cyan:focus {
    color: #fff !important;
    border-color: rgb(107, 224, 245);
    background: #0c89ae;
    outline: none;
}

.btn-label-cyan:active {
    color: #fff !important;
    border-color: rgb(107, 224, 245);
    background: #0c89ae;
}

.table th,.table td {
    font-size: 11px;
}

.table > :not(caption) > * > * {
    padding: 0.782rem 0.525rem !important;
}

td#bt-detalles {
    width: 15px;
}

table.dataTable.dtr-column > tbody > tr > td.control:before, table.dataTable.dtr-column > tbody > tr > td.control:before, table.dataTable.dtr-column > tbody > tr > th.control:before, table.dataTable.dtr-column > tbody > tr > th.control:before {
    position: absolute;
    line-height: 1.5em !important;
    font-weight: 500;
    height: 22px;
    width: 22px;
    color: #fff;
    /* border-radius: 1em; */
    box-sizing: content-box;
    text-align: center;
    font-family: "Courier New", Courier, monospace;
    content: "+";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

table.dataTable.dtr-column > tbody > tr > td.dtr-control:before, table.dataTable.dtr-column > tbody > tr > th.dtr-control:before, table.dataTable.dtr-column > tbody > tr > td.control:before, table.dataTable.dtr-column > tbody > tr > th.control:before {

    margin-top: 0px;
    margin-left: 0px;
    display: block;
    position: absolute;
    color: white;
    border: 3px solid white;
    border-radius: 14px;
    box-shadow: 0 0 3px #444;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    font-family: 'Courier New', Courier, monospace;
    line-height: 14px;
    content: '+';
    background-color: #31b131;
    font-weight: bold;
}



.table-border-abajo-49 {
    border: 1px solid #e3ebf3;
    border-left: 4px solid #ff3e1d !important;
}

.table-border-abajo-48 {
    border: 1px solid #e3ebf3;
    border-left: 4px solid #ffab00 !important;
}

.table-border-abajo-47 {
    border: 1px solid #e3ebf3;
    border-left: 4px solid #e3ebf3 !important;
}



.bg-danger {
    --bs-bg-opacity: 1;
    background-color: #ce1e2a  !important;
}

.text-danger {
    --bs-text-opacity: 1;
    color: #ce1e2a  !important;
}

@media (min-width: 0px) and (max-width: 420px){

    .hidden-movil{
        display: none;
    }
}

.table-danger th {
    background: #b8141a !important;
    color: #FFFFFF !important;
}

.table-danger tr {
    background: #b8141a !important;
    color: #FFFFFF !important;
}


.table-danger td {
    background: #b8141a !important;
    color: #FFFFFF !important;
}


.table-primary th {
    background: #124d9f !important;
    color: #FFFFFF !important;
}
.table-primary tr {
    background: #124d9f !important;
    color: #FFFFFF !important;
}
.table-primary td {
    background: #124d9f !important;
    color: #FFFFFF !important;
}

.table-secondary th {
    background: #f2f2f2  !important;
    color: #000 !important;
}

.table-secondary td {
    background: #f2f2f2  !important;
    color: #000000 !important;
}

.botonImprimirReporte{
    position: static; 
    width:90%;
    margin-left: 5%;
    margin-right: 5%;/* o relative */
}

/* Se activa solo al hacer scroll */
.botonImprimirReporte.flotante{
    position: fixed;
    z-index: 9999;
    width:70%;
    margin-left: 15%;
    margin-right: 15%;
    
    opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: auto;
  
      border-color: #ffffff !important;
    border: 2px solid;
}


.botonImprimirReporte.flotante.visible{
  opacity: 1;
  transform: translateY(12px) scale(0.98);
  
  
}

/* 800*/