/* 날씨지도 */
.kmap-app { position:relative; }
.kmap-app select { font-size:15px; }
#image-player-wrapper .kmap-app .kmap-message { top:0px; bottom:auto; width:60%; }

/* TIMEBAR */
.kmap-app .timebar input:focus, .kmap-app .timebar button:focus {
	outline: none;
	box-shadow:none;
}

.kmap-app .timebar {
	display: flex;
	align-items:center;
	position: absolute;
	bottom: 10px;
	left: 50%;
	width: 260px;
	margin-left: -130px;
	border: 1px solid #ccc;
	border-radius:5px;
	background-color: #fff;
	z-index: 1;
}

.kmap-app .timebar>div {
	flex: 1 1 auto;
	padding: 5px;
	box-sizing: border-box;
	border-right: 1px solid #eee;
	text-align:center;
}
.kmap-app .timebar div>span {
	display: block;
	font-size: 12.5px;
}

.kmap-app .timebar div>select {
	-webkit-appearance: menulist;
	padding: 3px;
	width:45px; 
}

.kmap-app .timebar input.range {
	width: 90px;
}

.kmap-app input[type=range] {
	-webkit-appearance: none;
	width: 100%;
	height: 5px;
	background: #d5d4d3;
	cursor: pointer;
	border-radius: 0;
	transition: background 450ms ease-in;
}

.kmap-app input[type=range]:focus {
	border:1px solid red;
}

.kmap-app button.time {
	width: 30px;
	height: 30px;
	background-color: transparent;
	text-indent: -999em;
	border: none;
	cursor: pointer;
	background-image: url(../../images/main/timebar.png);
	background-repeat: no-repeat;
}

.kmap-app button.time:focus {
	border:3px solid rgb(0, 187, 255);
}

.kmap-app button.time.play {
	background-position: 1px -4px;
}

.kmap-app button.time.pause {
	background-position: -101px -3px;
	
}




/* vertical legend */

#map { z-index: 1;}
.image-player-legend {
	position: absolute;
	width: 66px;
	height: 100%;
	top:11px; right: 11px; bottom:0; 
	z-index:999;
}
.image-player-legend ul {
	display:block;
	padding: 6px;
	position: relative;
	background-color: rgba(255,255,255,0.9);
	overflow: hidden;
	border-radius: 4px;
}
.image-player-legend ul li {
	display:block;
	padding:0; margin:0; width: 100%; height: 16px;
	line-height: 16px;
}
.image-player-legend.legend-sfc ul li {
	height: 36px;line-height: 36px;
}
.image-player-legend ul li .legend-color {
	display:inline-block;
	height: 16px;
	line-height: 16px;
	width: 16px;
}
.image-player-legend.legend-sfc ul li .legend-color {
	height: 36px;line-height: 36px;
}
.image-player-legend ul li .legend-text {
	display:inline-block;
	font-size: 12px;
	margin-left:2px;
	line-height: 16px;
	font-weight:600;
	vertical-align:top;
	padding-bottom:3px;
	padding-top:8px;
}
.image-player-legend.legend-sfc ul li .legend-text {
	line-height: 36px;
	padding-top:0px;
}

.image-player-legend ul li .legend-unit {
	display:block;
	font-size: 13px;
	line-height: 24px;
	text-align: center;
	font-weight:700;
}


