html, body {
    font-family: "Arial", "sans-serif";
    height: 100%;
    width: 100%;
    min-height: 100vh;
    min-width: 100vw;
    margin: 0;
    overflow-x: hidden;
}

#page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    align-content: center;
}

.header1 {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;

    background: rgb(23, 29, 41);
    width: 100%;
}

.header1> div > a > img {
    padding: 1vh;
    margin: 0;
    max-height: 5vh;
    width: auto;
}

.name, .menu {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.name > h1 {
    display: block;
    white-space: nowrap;
    font-size: 3vh;
    padding: 1vh 0.5vh;
    margin: 0;
    color: chocolate;
}

.menu>a {
    display: block;
    white-space: nowrap;
    font-size: 3vh;
    padding: 1vh 1vh;
    margin: 0;
    color: grey;
    text-decoration: none;
    position: relative;
}

.links {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:flex-end;
}

#map {
    height: 90vh;
    background-color: silver;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#footer {
    /*height: 3vh;*/
    background: rgba(23, 29, 41);
    padding: 0.2vh;
    font-size: 2vh;
    color: dimgray;
}

.leaflet-container {
	height: 100%;
	width: 100%;
	max-width: 100%;
	max-height: 100%;
}

.control-container {
	height: 30px;
	width: 30px;
	border: 2px solid silver;
	border-radius: 2px;
	background: white;
}

.control-form {
	height: 30px;
	width: 30px;
}

.control-base {
	opacity: 0;
    width: 0px;
    height: 0px;
    overflow: 'hidden';
    z-index: -1;
}

.control-label {
	position: absolute;
	top: 0;
	left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	height: 100%;
	width: 100%;
	cursor: pointer;
}

.component-select {
	height: 100%;
	width: 100%;
}

