html, body{
	font-family: "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-weight: normal;
	width: 100vw;
	height: 100%;
	margin: 0;
	padding: 0;
}

#map {
	width: 100%;
	width: calc(100% - 300px);
	margin-left: 300px;
	height: 100%;
}

.tooltip {
	position: relative;
	padding: 3px;
	background: rgba(0, 0, 0, 0.8);
	color: white;
	opacity: 0.7;
	white-space: nowrap;
	font: 1em sans-serif;
	border-radius: 2px 2px 2px 0;
}

#overlayMenuLowerRight {
	position: absolute;
	right: 2em;
	bottom: 2em;
	text-align: right;
}

#overlayMenuLowerRight > * {
	margin-top: 1em;
}

#menuTrigger {
	position: absolute;
	left: 0em;
	top: 0.5em;
	min-width: 3em;
	min-height: 3em;
	background-color: rgba(255, 255, 255, 0.8);
	border-top-right-radius: 20%;
	border-bottom-right-radius: 20%;
	cursor: pointer;
	padding-top: 0.6em;
	padding-left: 0.6em;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
	z-index: 997;
}

#loginModal {
	position: absolute;
	top: 0;
	left: 0;
	color: white;
	background: rgba(0, 0, 0, 0.85);
	width: 100vw;
	height: 100%;
	min-height: 100vh;
	z-index: 999998;
	text-align: center;
	font-size: 1.3em;
	font-weight: bold;
	cursor: progress;
	overflow: auto;
}

#loginModalForm {
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	width: 100vw;
	min-height: 100%;
	padding: 0 25% 0 25%;
	text-align: center;
}

#loginInvalid {
	color: #c00;
	font-weight: bold;
	font-size: 0.8em;
	vertical-align: middle;
	display: none;
}

#loginModalForm #logoBox {
	overflow: hidden;
	flex-grow: 0;
	flex-shrink: 0;
}

#loginModalForm #logoBox #logo {
	overflow: hidden;
	border-radius: 50%;
	background: white;
	height: 240px;
	width: 240px;
	padding: 20px 30px;
	margin: 0 auto;
}

#loginModalForm input {
	text-align: center;
	color: #eee;
}

#loginModalForm div {
	margin: 1em;
}

#modal {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	min-height: 100vh;
	z-index: 999999;
	text-align: center;
	cursor: progress;
	white-space: pre-line;
	display: none;
}

#modalContentBox {
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	width: 100vw;
	height: 100%;
	padding: 25%;
}

#modalContent {
	color: white;
	font-size: 1.3em;
	background: rgba(0, 0, 0, 0.75);
	min-width: 50vw;
	min-height: 50%;
	padding: 25%;
	border-radius: 10px;
}

#connectionInfoText {
	text-decoration: underline;
	font-weight: bold;
	margin-bottom: 1em;
}

.ol-zoom {
	left: auto;
	right: 0.5em;
}

.ol-rotate {
	top: 4.5em;
}

div.drag-target {
	border-left: white 2px solid;
}

.sidenav .collapsible-body {
	background: #fafafa;
	padding: 1em;
}

#overlayMenuVisibility {
	position: relative;
	min-height: 40px;
}

#overlayMenuVisibility > a {
	transition: margin 1s, visibility 1s, background-color .3s, .3s ease-out;
}

#overlayMenuVisibility.overlayContracted > .hiddenOverlayButton {
	margin-right: -43px;
	opacity: 0;
}

#overlayMenuVisibility > a:last-child {
	position: inherit;
	right: unset;
	visibility: unset;
}

#mapInfoOverlay {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	padding: 0.3em 1em 0.3em 1em;
	text-align: center;
	color: #333;
	font-size: 0.8em;
	z-index: 996;
	background: white;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.collapsible li {
	position: relative;
}

.collapsible li .secondary {
	position: absolute;
	right: 1em;
	top: 0;
}

#clientList li {
	transition: all .25s ease-out;
	transition-delay: .25s;
	min-height: 48px;
}

#clientList li.hidden {
	height: 0;
	min-height: 0;
}

#clientList li > * {
	transition: opacity .25s ease-out;
}

#clientList li.hidden > * {
	opacity: 0
}

.statusInfoBox {
	line-height: 1.5em;
}

.statusParamsLine a {
	vertical-align: middle;
	font-size: 1.3em;
}

.ol-scale-line {
	top: 11px;
	right: 50px;
	left: auto;
	bottom: auto;
}

@media screen and (max-width: 992px) {
	#loginModalForm {
		padding: 0;
	}

	#logo > img {
		height: 160px;
		width: 160px;
	}

	#loginModalForm #logoBox #logo {
		height: 200px;
		width: 200px;
	}

	#map {
		width: 100%;
		margin-left: 0;
	}
}

#guest-info{
	z-index: 9999;
	color: red;
    position: fixed;
    top: 10px;
    background: #5555;
	left: 50%;
	transform: translateX(-50%);
    padding: 3px 5px;
	font-weight: bold;
}
