﻿
* {
	margin: 0;
	padding: 0;
	cursor: copy;
}
html, body {
	height: 100%;
	cursor: copy;
}
#map {
	width: 100%;
	height: 525px;
	cursor: alias;
}
.animate-polyline-white {
	stroke-dasharray: 10;
	stroke-dashoffset: 100;
	animation: dash 3s linear infinite;
	filter: drop-shadow(2px 2px 0 white) drop-shadow(-2px -2px 0 white) drop-shadow(2px -2px 0 white) drop-shadow(-2px 2px 0 white);
}
.animate-polyline-cyan {
	stroke-dasharray: 10;
	stroke-dashoffset: 100;
	animation: dash 3s linear infinite;
	filter: drop-shadow(2px 2px 0 #02a5d6) drop-shadow(-2px -2px 0 #02a5d6) drop-shadow(2px -2px 0 #02a5d6) drop-shadow(-2px 2px 0 #02a5d6);
}
.animate-polyline-pink {
	stroke-dasharray: 10;
	stroke-dashoffset: 100;
	animation: dash 3s linear infinite;
	filter: drop-shadow(2px 2px 0 pink) drop-shadow(-2px -2px 0 pink) drop-shadow(2px -2px 0 pink) drop-shadow(-2px 2px 0 pink);
}
.animate-polyline-orange {
	stroke-dasharray: 10;
	stroke-dashoffset: 100;
	animation: dash 3s linear infinite;
	filter: drop-shadow(2px 2px 0 orange) drop-shadow(-2px -2px 0 orange) drop-shadow(2px -2px 0 orange) drop-shadow(-2px 2px 0 orange);
}
.animate-polyline-yellow {
	stroke-dasharray: 10;
	stroke-dashoffset: 100;
	animation: dash 3s linear infinite;
	filter: drop-shadow(2px 2px 0 yellow) drop-shadow(-2px -2px 0 yellow) drop-shadow(2px -2px 0 yellow) drop-shadow(-2px 2px 0 yellow);
}
.animate-polyline-black {
	stroke-dasharray: 10;
	stroke-dashoffset: 100;
	animation: dash 3s linear infinite;
	filter: drop-shadow(2px 2px 0 black) drop-shadow(-2px -2px 0 black) drop-shadow(2px -2px 0 black) drop-shadow(-2px 2px 0 black);
}
.marker-custom {
	width: 100%;
	height: 100%;
}
.red-border-marker {
	background-color: #fff;
	width: 100%;
	height: 100%;
	border: 3px solid red;
	border-radius: 50%;
}
.td-table {
	border: 1px solid #ffdd00;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 3px;
	padding-bottom: 2px;
	color: #ffdd00;
	font-size: 10px;
}
.tr-table {
	border: 1px solid #ffdd00;
	width: 100%;
	white-space: nowrap;
}
.th-table {
	border: 1px solid #ffdd00;
	text-align: center;
	color: #ffdd00;
	font-weight: bold;
}
@keyframes dash {
	to {
		stroke-dashoffset: 0;
	}
}
#map {
	position: relative;
}
#forkmeongithub a {
	background: #bb1111cc;
	color: #fff;
	font-family: arial, sans-serif;
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	text-shadow: 2px 2px #00000055;
	line-height: 1.4rem;
	padding: 5px 40px;
	top: -150px;
}
#forkmeongithub a:hover {
	background: #333388bb;
}
#forkmeongithub a::before,
#forkmeongithub a::after {
	content: "";
	width: 100%;
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	height: 1px;
	background: #fff;
}
#forkmeongithub a::after {
	bottom: 1px;
	top: auto;
}
@media screen and (min-width: 800px) {
	#forkmeongithub {
		position: fixed;
		display: block;
		top: -10px;
		right: -10px;
		width: 200px;
		overflow: hidden;
		height: 200px;
		z-index: 9999;
	}
	#forkmeongithub a {
		width: 200px;
		position: absolute;
		top: 60px;
		right: -60px;
		transform: rotate(45deg);
		box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
	}
}
.legend {
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

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

.legend li {
    margin-bottom: 10px;
}

.legend span {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
}
.map-legend {
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
    max-width: 200px;
    width: 200px;
}
.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.legend-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.locate-location-arrow {
	cursor: pointer;
	font-size: 14px;
	line-height: 29px;
	text-align: center;
	width: 29px;
	display: block;
}