html, body {
	padding: 0;
	margin: 0;
	overflow: hidden;
	font-family: "Roboto Light", sans-serif;
}

.map-field {
	width: 100%;
	height: 100%;
}

.nav-menu {
	position: absolute;
	background-color: #c6c6c6;
	border-radius: 10px 10px 0 0;
	left: 160px;
	height: 160px;
	padding-top: 20px;
	bottom: -160px;
	transition: .4s;
	font-size: 1.3em;
	-webkit-box-shadow: 0 6px 15px -1px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0 6px 15px -1px rgba(0, 0, 0, 0.75);
	box-shadow: 0 6px 15px -1px rgba(0, 0, 0, 0.75);
}

.nav-menu:hover {
	bottom: 0;
}

.nav-menu div {
	padding: 3px 15px;
	cursor: pointer;
	color: #313131;
}

.coords-menu {
	background-color: #c6c6c6;
	color: #313131;
	font-size: 1.3em;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 120px;
	border-radius: 10px 0 0 10px;
	height: auto;
	width: 200px;
	padding: 10px 0;
	right: -220px;
	-webkit-box-shadow: 6px 0 15px -1px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 6px 0 15px -1px rgba(0, 0, 0, 0.75);
	box-shadow: 6px 0 15px -1px rgba(0, 0, 0, 0.75);
	transition: 1s;
}

.coords-menu hr {
	width: 100%;
	margin: 10px 0;
}

.coords-menu-line {
	margin: 0 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.coords-menu-line label {
	vertical-align: middle;
	text-align: right;
	display: inline-block;
	width: 25px;
}

.coords-menu-line input {
	font-size: 1.1em;
	color: #323232;
	border-radius: 7px;
	border-width: 0;
	margin: 0;
	margin-left: 12px;
	padding: 2px 6px;
	width: 100%;
	outline-color: #787878;
	outline-width: 1px;
	transition: .5s;
}

.tingle-input {
	width: 100%;
	border: 2px solid #ccc;
	outline: 0;
	padding: 5px 10px;
	margin-top: 15px;
	font-size: 16px;
	box-sizing: border-box;
}

.tingle-textarea {
	max-width: 100%;
	min-width: 100%;
	min-height: 50px;
	max-height: 500px;
	border: 2px solid #ccc;
	outline: 0;
	padding: 5px 10px;
	margin-top: 15px;
	font-size: 16px;
	box-sizing: border-box;
}