* {
	font-family: 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: 250px;
	}
}
.side {
   margin-right: 2%;
    width: 290px;
}
div#map {
	margin-right: 290px;
    margin-left: 4%;
}

.toggle-nav {
	display: none;
	
	position: fixed;
	top: 10px;
	right: 0;
	z-index: 9999;
	
	font-size: 30px;
	background: rgb(18 84 133);
	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: 250px;
	background: #125485;
	border-left: 1px solid #ddd;
	height: 100%;
	overflow: auto;
	z-index: 999;
}

@media (max-width: 768px) {

	.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;
	border-bottom: 1px solid #ddd;
}

.search input {
	width: 100%;
	padding: 15px;
	border: 0;
	font-size: 1em;
}

.search button {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	padding: 0 10px;
	background: none;
	border: 0;
}

nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

nav ul > li {
	border-radius: 25px;
	border: 1px solid #125485;
	margin: 3px;
	/* padding-right: 5px; */
	background: #deeef9;
}

nav ul > li > label {
	display: block;
	position: relative;
	height: 40px;
}


nav ul > li:nth-child(1):hover  {
background:  #aadbe3;
}
nav ul > li:nth-child(2):hover {
background: #fbeec7;
}
nav ul > li:nth-child(3):hover {
background: #8ecba8;
}
nav ul > li > label .checkbox {
	position: absolute;
	top: 50%;
	left: 10px;
	margin-top: -5px;
}

nav ul > li > label .name {
	padding: 10px;
}

nav ul > li > label .icon {
	position: relative;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    overflow: hidden;
    display: block;
	float: right;
}

nav ul > li > label .icon img {
	width: 100%;
}

/**/

.comment {
	font-size: 80%;
	padding: 15px;
	color: #333;
}


.text-labels {
	font-size: 14px;
	font-weight: 700;
	color: #000;
	text-shadow: 0px 0px 6px #fff;
	background: #65a6ff;
	display: inline-block !important;
    width: fit-content !important;
    height: 18px !important;
    border-radius: 5px !important;
}

ul ul {
	padding-right: 40px;
}

ul ul li {
	border-top: 1px solid #ddd;
	border-bottom: 0;
}
ul ul li:last-child {
	border-bottom: 0;
}

 @media (max-width: 768px){
	div#map {
		margin-right: 4%;
	}
	.side {
		padding-top: 71px;
		    background: rgb(222 238 249 / 0%);
	}
 }