/* style for mobile devices */
@media (min-resolution: 2dppx){
    :root{
        --header-height: 80px;
        --header-font: Lato;
        --menu-height: 90px;
        --menu-font: Lato;
        --search-height: 100px;
        --search-font: Lato;
        --content-font: Lato;
        --footer-height: 50px;
        --footer-font: Lato;
    }
    body{
        background-color: var(--content-bg-color);
    }
    div.wrap{
        position: absolute;
        top: 0px;
        left: 0px;
        height: 92vh;
        width: 100vw;
        padding: 0px;
        margin: 0px;
        overflow: clip;
        display: flex;
        flex-direction: column;
    }

    div.header{
        color: var(--header-txt-color);
        background-color: var(--header-bg-color);
        height: var(--header-height);
        font-family: var(--header-font);
        user-select: none;

        display: flex;
        flex-direction: row;
    }
    div.header img{
        position: relative;
        height: var(--header-height);
        width: auto;
        overflow: clip;
        padding-right: 20px;
        user-select: none;
    }
    div.header div{
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: var(--header-height);
        padding: 0px;
    }
    div.header h1{
        text-transform: uppercase;
        margin: 0px;
    }
    div.header h2{
        font-size: 20px;
        font-weight: 100;
        font-style: italic;
        margin: 0px;
    }

    div.menu{
        color: var(--menu-txt-color);
        background-color: var(--menu-bg-color);
        height: var(--menu-height);
        overflow: clip;
        user-select: none;
        font-size: 30pt;
        font-family: Lato, sans-serif;
        display: flex;
        flex-direction: row;
        align-items: normal;
        justify-content: flex-start;
        padding-left: 10px;
        padding-right: 10px;

    }
    div.menu form{
        height: inherit;
        width: 100%;
        display: inherit;
        font-family: inherit;
    }
    div.menu span{
        order: 1;
        display: flex;
        flex-direction: row;
        overflow-y: clip;
        overflow-x: auto;
        font-family: inherit;
        
    }
    div.menu span::-webkit-scrollbar{
        height: 1px;
    }
    div.menu button{
        order: 1;
        height: calc(var(--menu-height) - 10px);
        margin: 5px;
        min-width: 200px;
        max-width: 500px;
        width: auto;
        font-family: inherit;
        font-size: 20pt;
    }
    div.menu button.select{
        order: 0;
        background-color: var(--header-bg-color);
        color: var(--header-txt-color);
    }
    div.menu button.log{
        order: 2;
        margin-left: auto;
    }
    div.menu a.log{
        order: 2;
        min-width: 200px;
        max-width: 500px;
        width: auto;
        margin-left: auto;
    }
    div.menu a.log button{
        float: right;
    }

    div.search{
        color: var(--search-txt-color);
        background-color: var(--search-bg-color);
        height: var(--search-height);
        user-select: none;
        font-family: Lato, sans-serif;
        
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }
    div.search button{
        order: 1;
        height: calc(var(--search-height) - 10px);
        font-size: 18pt;
        min-width: 300px;
        max-width: 800px;
        width: auto;
        font-family: inherit;
        font-size: 28pt;
    }
    div.search a{
        order: 1;
        height: calc(var(--search-height) - 10px);
        font-size: 18pt;
        margin: 5px;
        min-width: 300px;
        max-width: 800px;
        width: auto;
    }
    div.search button.search{
        margin-left: auto;
        order: 2;
        height: calc(var(--search-height) - 10px);
        font-size: 18pt;
    }
    div.search input[type=search]{
        order: 3;
        height: calc(var(--search-height) - 10px);
        font-size: 28pt;
        padding-left: 10px;
        margin-left: 10px;
        margin-right: 2px;
    }
    div.search input[type=search]::placeholder{
        font-style: italic;
    }

    div.content{
        color: var(--content-txt-color);
        background-color: var(--content-bg-color);
        height: calc(92vh - var(--header-height) - var(--menu-height) - var(--search-height) - var(--footer-height));
        overflow-x: clip;
        overflow-y: auto;
        padding: 5px;

        display: flex;
        flex-direction: column;
    }

    div.footer{
        color: var(--footer-txt-color);
        background-color: var(--footer-bg-color);
        height: var(--footer-height);
        font-size: calc(var(--footer-height) - 20px);
        user-select: none;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }
 
}