html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Open Sans Condensed', sans-serif;
}

header,
nav,
main,
aside {
    display: block;
}

header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    width: 100%;
    height: 60px;
    
}

.map-foundation {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 250px);
    height: calc(100% - 60px);
}

nav {
    position: absolute;
    right: 0 !important;
    bottom: 0;
    z-index: 3;
    width: 250px;
    height: calc(100% - 60px);
}

.ip-wrap {
    position: fixed;
    right: 250px;
    bottom: 0;
    z-index: 2;
    width: calc(100% - 250px);
    height: calc(100% - 60px);
}

.infoPage {
    position: fixed;
    right: 100px;
    bottom: 0;
    z-index: 1;
    width: calc(100% - 500px);
    min-width: 400px;
    height: calc(100% - 60px);
    background-color: #fff;
}

@media  screen and (max-width: 700px) {
    header {
        height: 50px;
    }
    
    header .btn.menu {
        display: block;
    }
    
    .map-foundation {
        width: 100%;
        height: calc(100% - 50px);
    }
    
    nav {
        width: 100%;
        z-index: -1;
        opacity: 0;
        height: calc(100% - 50px);
    }
    
    nav.visible {
        display: block;
    }

    .ip-wrap {
        right: 0;
        width: 100%;
        z-index: 4;
        height: calc(100% - 50px);
    }
    
    .infoPage,
    .infoPage.min {
        right: 0 !important;
        width: 100% !important;
        height: calc(100% - 50px);
    }
    
    .infoPage.min .header {
        width: 100% !important;
    }
}