@media screen and (max-width:786px) {
    * {
        font-size: 12px;
        box-sizing: border-box;
        line-height: 1.6em;
    }

    body {
        block-size: 100vh;
        overflow-y: auto;
    }

    h1 {
        font-size: 26px;
        font-weight: 700;
    }

    h2 {
        font-size: 24px;
        font-weight: 700;
    }

    h3 {
        font-size: 22px;
        font-weight: 700;
    }

    h4 {
        font-size: 18px;
        font-weight: 700;
    }

    h5 {
        font-size: 16px;
        font-weight: 700;
    }

    h6 {
        font-size: 14px;
        font-weight: 700;
    }

    .dropdown-menu{
        max-width: 350px;
        width: 250px;
    }
    p,
    label {
        font-size: 12px;
        font-weight: 500;
    }

    strong{
        font-size: 13px;
        font-weight: 700; 
    }
    .layout .aside {
        display: none;
        position: fixed;
        inset-inline-start: 0;
        inset-block-end: 0;
        inset-block-start: 0;
        z-index: 9000;
        block-size: 100vh;
        box-shadow: 0 5px 10px rgba(0, 0, 0, .8);
    }

    .layout .main {
        inline-size: 100%;
        block-size: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .layout .main .container {
        padding: 0 5%;
        overflow-x: auto;
    }

    .layout.active .aside {
        display: block;
        inline-size: 90%;
        /* grid-template-rows: 60px auto 60px; */
    }

    .layout.active .aside .menu span,
    .layout.active .aside .userinfo label {
        display: block;
    }

    .layout.active .main {
        inline-size: 100%;
    }

    .modaling.active,
    .modales.active {
        display: grid;
        place-items: center;
    }

    * table.table-responsive {
        overflow-x: auto;
        text-wrap: nowrap;
    }

}