﻿.Miloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(249, 249, 249, 0.8); /* transparencia */
    display: none; /* Oculto por defecto, JS lo activa */
}

.imgloader {
    background: url('../assets/img/newloader.svg') no-repeat center center;
    position: fixed;
    left: 50%; /* Centrado */
    top: 50%;
    transform: translate(-50%, -50%); /* Truco para centrar */
    width: 100%; /* Tamaño fijo para el SVG si es necesario */
    height: 20rem;
    /* Filtro para llegar al color #076BE5 */
    filter: invert(29%) sepia(93%) saturate(2586%) hue-rotate(195deg) brightness(96%) contrast(96%);
}


@media (max-width: 900px) {
}
