body{
	display: flex;
	flex: auto;
	flex-direction: column;
	height: 100vh;
	width: 100vw;
	margin: 0;
	padding: 0;
	font: 400 16px/1.25 Metric, Arial, Helvetica, sans-serif;
	overflow: hidden;
}
.grid{
	display: grid;
}
.flex{
	display: flex;
}
.flex.row{
	flex-direction: row;
}
.flex.col{
	flex-direction: column;
}
.bold-labels label{
	font-weight: 800;
}
panel{
	display: flex;
	position: relative;
	border: 0px solid rgba(0, 0, 0, 0.08);
}
panel.col{
	flex-direction: column;
}
panel.row{
	flex-direction: row;
}
panel.row.border{
	border-bottom-width: 1px;
}
panel.col.border{
	border-right-width: 1px;
}
panel.row panel.col:last-of-type{
	border: none!important;
}
panel.col panel.row:last-of-type{
	border: none!important;
}
.map-component{
	display: flex;
	flex: auto;
	background-color: blue;
}
.map-container{
	display: flex;
	flex: auto;
	height: 100%;
	width: 100%;
}
.map-container .mapboxgl-ctrl-logo{
	display: none;
}
.map-border{
	border-width: 1px;
}
.map-focus{
	border-color: #a2b86c!important;
	box-shadow: 0px 0px 5px 3px #a2b86c;
	border-radius: 5px;
	z-index: 1;
}
.map-overlay{
	position: absolute!important;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events:none;
}
.map-overlay .overlay{
	position: absolute;
	border: 1px solid black;
	border-radius: 5px;
	padding: 5px;
	white-space: pre;
	line-height: 1.4;
	font-size: 1.2em;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.4);
}
.map-container .map-position{
	position: absolute;
	bottom: 10px;
	right: 10px;
	padding: 5px;
	color: #000000;
	background-color: #ffffff;
	border: 1px solid #9ca7ba;
	border-radius: 5px;
	font-size: 1.2em;
	text-align: center;
}
.border5{
	border-width: 1px;
	border-style: solid;
	border-radius: 5px;
}
.theme-wrapper{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-top: 5px;
}
.theme-color{
	display: inline-flex;
	margin: 0 16px 0 13px;
	border-width: 1px;
	border-style: solid;
	border-radius: 100px;
	background-color: #f3f3f3;
	border-color: #f3f3f3;
}
.theme-color .color{
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border-width: 1px;
	border-style: solid;
}
.full-viewport{
	display: block!important;
	position: absolute!important;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 99999!important;
}
.k-grid td{
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}