@import url('https://fonts.googleapis.com/css?family=Inter:500,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Manrope:300,400,500,600,700, 800&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* :root element, base settings */
html {
    display: block;
    position: absolute;
    padding: 0;
    margin: 0;
    min-width: 100vw;
    min-height: 100vh;
    overflow: auto;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.2px;
    word-spacing: 0.2px;
    text-align: left;
    color: #58585A;
    background: #ffffff;
}

section#root {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

h2 {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 135%;
    letter-spacing: 0.2px;
    color: #1A202C;
}

section#root>nav {
    overflow-y: auto;
    overflow-x: hidden;
}

section#root>main {
    overflow-x: hidden;
    overflow-y: auto;

}

@media all and (orientation: portrait) and (max-width: 800px) {

    h1.AppTitle {
        display: none;
    }

    section#root {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    main {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    main>div.MuiGrid-root.MuiGrid-container {}

    main h5.MuiTypography-root {
        padding: 10px !important;
        font-size: 20px !important;
        line-height: 30px !important;
    }

    /* main table.MuiTable-root {
        display: block;
        position: absolute;
        top:100px;
        left:0;
        right: 0;
        bottom:0;
    }

    main table.MuiTable-root > tbody,
    main table.MuiTable-root tr {
        display: block !important;
    }

    main table.MuiTable-root > thead {
        display: none !important;
    }

    main table.MuiTable-root tr th,
    main table.MuiTable-root tr td {
        display: block !important;
        border:none;
    }

    main table.MuiTable-root tr {
        border-bottom: 1px solid red;
    } */
}