.ol-tooltip {
	position: relative;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	color: white;
	padding: 4px 8px;
	opacity: 0.7;
	white-space: nowrap;
}

.ol-tooltip -measure {
	opacity: 1;
	font-weight: bold;
}

.ol-tooltip -static {
	background-color: #ffcc33;
	color: black;
	border: 1px solid white;
}

.ol-tooltip -measure:before, .ol-tooltip -static:before {
	border-top: 6px solid rgba(0, 0, 0, 0.5);
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	content: "";
	position: absolute;
	bottom: -6px;
	margin-left: -7px;
	left: 50%;
}

.ol-tooltip -static:before {
	border-top-color: #ffcc33;
}

@
keyframes spinner {
	to {transform: rotate(360deg);
}

}
@
-webkit-keyframes spinner {
	to {-webkit-transform: rotate(360deg);
}

}
.spinner {
	min-width: 24px;
	min-height: 24px;
}

.spinner::before {
	content: "Loading…";
	height: 20px;
	margin-left: -9px;
	margin-top: -1px;
	position: absolute;
	width: 20px;
}

.spinner:not (:required )::before {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	animation: 0.8s ease 0s normal none infinite running spinner;
	border-color: #ffffff transparent;
	border-image: none;
	border-radius: 50%;
	border-style: solid;
	content: "";
}