/*BUSCANDO********************************************************************************/

/*Con css aonSpin */
#aonSpin {
    border: 10px solid rgba(201, 202, 200, .7);
    border-radius: 50%;
    border-left-color: transparent;
    width: 80px;
    height: 80px;
    animation: giro 1s linear infinite;
    position: fixed;
    top: 40%;
    left: 50%;
}

/*Cuando abres desde un móvil pone el spin más centrado*/
@media screen and (max-width:600px) {
    #aonSpin {
        left: 47%;
    }
}

@keyframes giro {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Bloquear ratón*/
body.block {
    pointer-events: none;
}