:root {
  --OverlayMarkerTipColor: #2874a4;
}

#MainContainer{
	background-image: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url("/projects/tracecar/pics/europe.svg");
	background-repeat:no-repeat;
	background-position: center;
	background-size: cover;
}

.OverlayMarkerDiv{
	position: absolute;
	cursor: pointer;
	border: 1px solid black;
	background-color: var(--BaseContentColor);
	box-shadow: 0px 1px 5px 0px var(--BoxShadowColor);
	/*min-width: 70px;*/
	max-width: 28vw;
	padding: 5px;
	font-size: 12px;
	text-align: center;
	border-radius: 5px;
}
.OverlayMarkerDiv:after{
    content:'';
    position: absolute;
    top: 100%;
    left: 0px;
    width: 0;
    height: 0;
    border-top: solid 15px var(--OverlayMarkerTipColor);
    border-left: solid 0px transparent;
    border-right: solid 25px transparent;
}

select[name=SelectUsercars] {
	max-width: 30vw;
	outline: none;
	background: white;
	font-size: 15px;
}

#AngleDiv{
	position: relative;
	/*border: 1px solid black;*/
/*
	left: -10px;
	top: -10px;
*/
	width: 20px;
	height: 20px;
}


