/* CARGADOR */

.cargador{
    position:fixed;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.cargador img{
    width: 100px;
}

.desaparece{
    animation: desaparece 1s forwards;
}

@keyframes desaparece {
    100% {
        opacity: 0;
        visibility: hidden;  
    }
  }

