.leaflet-usng {
	background: white;
	border-radius: 4px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
	cursor: pointer;
	padding: 2px 5px;
}

.leaflet-usng-lng {
	padding-left: 5px;
}

/* */


.leaflet-usng,
.leaflet-usng .uiElement input {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	z-index: 900;
	font-size: 13px;
}

	.leaflet-usng .uiElement {
		margin: 4px;
	}

		.leaflet-usng .uiElement .labelFirst {
			margin-right: 4px;
		}

	.leaflet-usng .uiHidden {
		display: none;
	}

	.leaflet-usng .uiElement .label {
		color: inherit;
		font-weight: inherit;
		font-size: inherit;
		padding: 0;
	}

	/* ############# */
	/* TOGGLE SWITCH */

	.leaflet-usng .switch {
		position: relative;
		display: inline-block;
		width: 2.1875em;
		height: 1.25em;
		margin-top: 0.5em;
	}

		.leaflet-usng .switch input {
			opacity: 0;
			width: 0;
			height: 0;
		}

	.leaflet-usng .switchtext {
		margin-right: 0.5em;
		margin-left: 0.3em;
	}

	.leaflet-usng .slider {
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #ccc;
		-webkit-transition: .4s;
		transition: .4s;
	}

		.leaflet-usng .slider:before {
			position: absolute;
			content: "";
			height: 1.125em;
			width: 1.125em;
			left: 0.125em;
			bottom: 0.0625em;
			background-color: white;
			-webkit-transition: .4s;
			transition: .4s;
		}

	.leaflet-usng input:checked + .slider {
		background-color: #2196F3;
	}

	.leaflet-usng input:focus + .slider {
		box-shadow: 0 0 0.0625em #2196F3;
	}

	.leaflet-usng input:checked + .slider:before {
		-webkit-transform: translateX(0.8125em);
		-ms-transform: translateX(0.8125em);
		transform: translateX(0.8125em);
	}

	/* Rounded sliders */
	.leaflet-usng .slider.round {
		border-radius: 2.125em;
	}

		.leaflet-usng .slider.round:before {
			border-radius: 50%;
		}


	/* ################## */
	/* TEXTBOX W DropDown */

	.leaflet-usng .textsearch {
		border-radius: 1.5625em;
		outline: none;
		text-indent: 0.2em;
	}

	.leaflet-usng .gobtn {
		background-color: #4CAF50;
		color: white;
		padding: 0.3125em;
		font-size: 1em;
		border: none;
		border-radius: 1.5625em;
		outline: none;
		margin-left: 0.2em;
	}

	.leaflet-usng .resetbtn {
		background-color: #bb0404;
		color: white;
		padding: 0.3125em;
		font-size: 1em;
		border: none;
		border-radius: 1.5625em;
		outline: none;
		margin-left: 0.2em;
	}

	.leaflet-usng .dropbtn {
		background-color: #4c6faf;
		color: white;
		padding: 0.3125em;
		font-size: 1em;
		border: none;
		border-radius: 1.5625em;
		outline: none;
		margin-right: 0.2em;
	}

	.leaflet-usng .dropdown {
		position: relative;
		display: inline-block;
		border-radius: 1.5625em;
		border: 0.125em solid #73AD21;
		padding: 0.2em;
	}

	.leaflet-usng .dropdown-content {
		display: none;
		position: absolute;
		background-color: #f1f1f1;
		/* min-width: 10em; */
		box-shadow: 0em 8px 1em 0em rgba(0,0,0,0.2);
		z-index: 1;
	}

		.leaflet-usng .dropdown-content a {
			color: black;
			padding: 0.75em 1em;
			text-align: left;
			text-decoration: none;
			display: block;
		}

			.leaflet-usng .dropdown-content a:hover {
				background-color: #ddd;
			}

	.leaflet-usng .dropbtn:hover .dropdown-content {
		display: block;
	}

	.leaflet-usng .dropbtn:hover .dropbtn {
		background-color: #3e8e41;
	}

	.leaflet-usng .selected {
		font-weight: bold;
	}

	.leaflet-usng .input-error {
		border-style: solid !important;
		border-color: red !important;
	}

