.img-w {
    position: absolute;
    width: auto;
    height: 100px;
    max-height: 100px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform ease-in-out 300ms;
  }
  /* Para que no se muestre la imagen original
  sino que se muestre el background image*/
/* .img-c{
    height: 110px; width:  110px;
}
    
.img-w img {
    height: 110px; width:  110px;
} */

.img-c {
    transition: width ease 400ms, 
    height ease 350ms, 
    left cubic-bezier(0.4, 0, 0.2, 1) 420ms, 
    top cubic-bezier(0.4, 0, 0.2, 1) 420ms;
}
.img-c:hover .img-w {
    transform: scale(1.18);
    transition: transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;
}

.img-c.active {
    width:  100vw !important;
    height: 100vh !important;
    position: fixed;
    z-index: 99999;
    background-color: rgb(0,0,0,0.50);
  }
.img-c.active.positioned {
    left: 0px !important;
    top:  0px !important;
    transition-delay: 50ms;
}

.img-c.active.positioned > .img-w{
    height: 100% !important;
    width:  100% !important;
    max-height: 100% !important;
    background-image: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-c.active.positioned > .img-w > img{
    height: 80% !important;
    width: auto !important;
    max-height: 80% !important;
    background-color: rgb(255, 255, 255);
}
.img-c.active.positioned:hover .img-w {
    transform: none;
    transition: none;
}
.img-c.postactive {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}
  
/*----------------------------------------------------------------------*/
.NoData{
    font-size: 1.5rem;
    padding: 1rem;
}
.spinner-border {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-border-width: 0.25em;
    border: 0.50rem solid currentcolor;
    border-right-color: transparent;
}
.spinner-border, .spinner-grow {
    display: inline-block;
    width: 6rem;
    height: 6rem;
    vertical-align: 0.25rem;
    border-radius: 50%;    
    animation: 0.75s linear infinite spin;
}

.text-center {
    text-align: center!important;
}

@keyframes spin{
    from{
        transform: rotate(0deg);
    }
    to { 
        transform: rotate(360deg); 
    }
}




.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    margin: -1px!important;
    overflow: hidden!important;
    clip: rect(0,0,0,0)!important;
    white-space: nowrap!important;
    border: 0!important;
}

/*-------------------------------------------------------------------------*/
.panel_buscar{
    background-color: white;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.175);
    border-radius: 0.375rem;
}

