/* /// LEGEND /// */
.legend-position {
	position: absolute;
	left:5px; top:0px;
	user-select: none;
	cursor: pointer;
	z-index: 2;
}

.legend {
	float: right;
	padding: 3px;
	margin-top: 0px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 1px 1px 1px #999;
	background: rgba(220, 220, 220, 0.8);
}

.legend .legendWrap {
	display: flex;
}

.legend .legendWrap>div {
	flex: auto;
}

.legend .legend-btn {
	position: absolute;
	right: -3px;
	top: 50px;
	width: 30px;
	height: 30px;
	border: none;
	text-indent: -999em;
	border-radius: 15px 0 0 15px;
	background-color: rgba(0, 0, 0, 0.3);
	background-image: url(../images/ico.png);
	background-repeat: no-repeat;
	background-position: -858px -2px;
}

.legend .co {
	height: 100%;
}

.legend .no {
	display: flex;
	flex-direction: column;
	margin-left: 1px;
}

.legend .no>span {
	flex: auto;
	display: block;
	font-size: 11px;
	text-align: center;
	line-height: 14.5px;
}

.legend .unit {
	border-top: 1px dotted #ccc;
	font-size: 10px;
	text-align: center;
}

.legend .no.dense {
	line-height: 14.5px;
}

.legend .no.half {
	margin-top: 10px;
}
@media screen and (max-width:1100px) {

}
@media screen and (max-width:768px) {
	.legend-position {
		right:auto;
		left:10px;
	}
}

@media screen and (max-width:430px) {
	.legend-position { top:5px; left:5px; }
	.legend-position .legend .legendWrap{
		max-height:367px;
		overflow-y:auto;
	}
}

