/**
 * Framework Tecno
 * @author Anderson Carlos <anderson.carlos@tecnoprog.com.br>
 * @copyright Tecnoprog © 2019, Tecnoprog Informatica e Eletronica LTDA - ME.
 *
 * Bloqueio visual quando a largura da viewport e inferior a 800px.
 */

.erp-min-resolution {
    display: none;
}

@media (max-width: 799px) {
    .erp-min-resolution {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 2147483000;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 1.5rem;
        background: #fff;
        color: #1b2e4b;
        font-family: Quicksand, "Segoe UI", sans-serif;
        font-size: 1.125rem;
        font-weight: 600;
        line-height: 1.4;
        text-align: center;
        box-sizing: border-box;
    }

    .erp-min-resolution__text {
        margin: 0;
        max-width: 22rem;
    }
}
