/**
 * Barra de progreso de Bananin
 * Copyright 2022-2022 Jhoan Velasquez
 * Licensed under: MIT
 */.m-progress {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1020;
    backdrop-filter: blur(1px);
    .m-fondo {
        inset: 0px;
        opacity: 0.85;
        backdrop-filter: blur(2px);
        background: #f1f1f1;
        position: absolute;
    }
    .m-logo {
        position: relative;
        width: 100%;
        max-width: 375px;
    }
    .m-container {
        z-index: 10;
        text-align: center;
        margin: 15px 15px;
    }
    .opaco {
        opacity: 0.2;
        filter: grayscale(1);
    }
    .llenando {
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        object-fit: cover;
        object-position: left;
    }
    p.m-porc {
        margin: 10px 0 0 0;
        font-weight: 800;
        font-size: clamp(1rem, 2rem, 4rem);
    }
}