* {
	font-family: 'Heebo', arial;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

.offset {
	position: fixed;
	top: -99px;
}

.map {
	height: 100%;
}

@media (min-width: 768px) {
	.map {
		margin-right: 300px;
		padding: 30px;
	}
}

#map {
	width: 100%;
	height: 100%;
}

@media (min-width: 768px) {
	#map {
		border-radius: 30px;
		border: 1px solid #ddd;
	}
}

.toggle-nav {
	display: none;
	
	position: fixed;
	top: 10px;
	right: 0;
	z-index: 9999;
	
	font-size: 30px;
	background: rgba(0,0,0,1);
	border-radius: 2rem;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	color: #fff;
	padding: 10px 15px;
	border: 0;
	
	box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

.toggle-nav em {
	font-family: 'FontAwesome';
	font-style: normal;
}

.toggle-nav em:before {
	content: '\f0c9';
}

.toggle-nav.opened em:before {
	content: '\f00d';
}

.side {
	position: fixed;
	top: 0;
	right: 0;
	width: 300px;
	/* padding-left: 10px; */
	background: #f8f8f8;
	height: 100%;
	overflow: auto;
	z-index: 999;
}

@media (min-width: 768px) {
	.side {
		padding-right: 20px;
		padding-top: 30px;
	}
}

@media (max-width: 767px) {

	.toggle-nav {
		display: block;
	}
	
	.side {
		margin-right: -250px;
		-o-transition:.5s;
		-ms-transition:.5s;
		-moz-transition:.5s;
		-webkit-transition:.5s;
		transition:.5s;
	}
	
	.side.opened {
		margin-right: 0;
	}
}

.search {
	position: relative;
	margin-bottom: 20px;
	padding-left: 20px;
}

.search input {
	width: 100%;
	padding: 10px;
	border: 0;
	font-size: 1em;
	border: 1px solid #ddd;
	border-radius: 30px;
}

.search button {
	position: absolute;
	top: 2px;
	left: 21px;
	height: 100%;
	padding: 0 10px;
	background: none;
	border: 0;
	font-size: 20px;
	width: 50px;
	color: #6d8c6d;
}

nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

nav ul ul {
	margin-right: 22px;
	display: none;
}

nav ul > li {
	position: relative;
	/* background: #f1f1f1; */
	border-bottom: 1px solid #dfdfdf;
}

nav ul > li > label {
	display: block;
	position: relative;
	margin-bottom: 0rem;
}

nav ul > li > label:hover {
	/* background: #f1f1f1; */
	cursor: pointer;
}

ul > li:hover {
    background-color: #f8fafc; 
}

ul > li > label {
    /* padding: 12px 1px; */
}

.checkbox {
    width: 16px;
    height: 16px;
    accent-color: #6d8c6d;
}
.submenu-arrow {
    transition: transform 0.3s ease;
}

ul > li > ul {
    border-top: 1px solid #edf2f7;
}

ul > li > ul > li {
    border-bottom: 1px solid #edf2f7;
}

ul > li > ul > li > label {
    font-size: 14px;
}

ul > li > ul > li .name {
    font-size: 14px;
    color: #475569;
}

.inline-icon img {
    margin-right: 7px;
    padding: 4px;
}
nav ul > li > label .checkbox {position: absolute;top: 50%;left: 30px;margin-top: -8px;}

nav ul > li > label .name {
    padding: 5px 47px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

nav ul ul > li > label .name {
	font-size: 1rem;
}

nav ul > li > label .icon {
	position: relative;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
	align-items: center;
    justify-content: center;
	float: right;
	text-align: center;
}

nav ul > li > label .icon img {
	width: 60%;
}

.inline-icon img {
	transform: translateY(1px) translateX(4px);
}
nav ul ul .inline-icon img {
    height: 30px !important;
}
.submenu-arrow {
	position: absolute;
	top: 12px;
	color: #737373;
	background: none;
	border: 0;
	z-index: 9;
	height: 25px;
	width: 26px;
	font-size: 18px;
}

.submenu-arrow:before {
	content: '\f104';
	font-family: 'FontAwesome';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	/* top: 6px; */
	/* display: flex; */
}

.submenu-arrow.opened:before {
	content: '\f107';
}

/**/

.comment {
	font-size: 80%;
	padding: 15px;
	color: #333;
}


@media (max-width: 767px) {
	.side  {
		padding-top: 80px;
		background: rgba(255,255,255,0.95)
	}
}


.marker-circle {
	background-color: var(--color, #263a7a);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.leaflet-popup-content-wrapper {
    border-radius: 30px;
}