*{
    box-sizing:border-box;
}
body{
    width:100%;
    height: 100%;
    padding:0;
    margin:0;
}
.body{
    width:100%;
    height: 100%;
    margin:0;
    padding:0;
}
.main-header{
    width: 100vw;
    height: 64px;
    background-color: #ffffff;
    display: flex;
    flex-flow: row;
    align-items: center;
    box-shadow: 0px 3px 4px 4px rgba(0,80,191,0.4);
    position: fixed;
    top:0;
    left:0;
    z-index: 200;
}
.header-tap{
    font-size:2.0em;
    color:#ffffff;
    background-color: #0050bf;
    width: 64px;
    height: 64px;
    text-align:center;
    cursor: pointer;
    padding:10px;
}
.mh-logo-cont{
    height: 64px;
    background-color: #ffffff;
    width: auto;
    min-width: 200px;
    padding:7px 15px;
}
.mh-logo{
    height: 50px;
    display: block;
    object-fit: cover;
    object-position: center;
}
.mh-links-cont{
    width: calc( 100vw - 200px - 64px);
}
.m-menu-cont{
    width:100%;
    max-width: 390px;
    margin:auto;
}
.m-menu-lnk{
    width: 100%;
    display: block;
    color:#ffffff;
    padding:10px;
    line-height: 1.5em;
    font-size: 1.6em;
    text-decoration: none;
    border-bottom: thin solid rgba(255,255,255,0.1);
}
.main-drawer{
    width: 100vw;
    height: calc(100vh - 64px);
    position: fixed;
    top:64px;
    background-color: rgba(0,80,191,0.9);
    padding:20px;
    margin-left: 0;
    transition: all linear 200ms;
    z-index:200;
}
.push-right{
    margin-left: 100vw;
    transition: all linear 200ms;
}
@media only screen and (min-width: 600px){
    .main-header{
        width: 100%;
        height: 64px;
        background-color: #0050bf;
        display: flex;
        flex-flow: row;
        align-items: center;
    }
    .header-tap{
        font-size:2.0em;
        color:#ffffff;
        background-color: #0050bf;
        width: 64px;
        height: 64px;
        text-align:center;
        cursor: pointer;
        padding:10px;
    }
    .mh-logo-cont{
        height: 64px;
        background-color: #ffffff;
        width: auto;
        min-width: 200px;
        padding:7px 15px;
    }
    .mh-logo{
        height: 50px;
        display: block;
        object-fit: contain;
        object-position: center;
    }
    .mh-links-cont{
        width: calc( 100vw - 200px - 64px);
    }

}
