
html,
body {
  height:100%;
}

#app{
    display: flex;
    flex-direction: column;
    height:100%;
    transition: var(--transition);
}


@media (min-width: 768px) {
    #app,
    #app.toggled{
        width:100%;
        left: 0;
    }
    
    .toggled .nav-container,
    .nav-container {
        position: relative;
        left:0;
        flex: 0 0 270px;
    }
}

#map{
    width:100%;
    /* height:calc(100vh - 120px);default - we'll update this in js */
    background-color: var(--grey-light);
    flex:1
}

main{
    background-color:white;
    flex:1;
    display: flex;
}

.admin-link{
    display: block;
    padding:1rem;
    color:white;
}

.footer_space{
    height: 60px;
    flex: 0 0 60px;
    width:100%;
}
footer {
    position: fixed;
    bottom: 0;
	background: var(--theme);
	color: white;
	height: 60px;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
    z-index: 1000;
}