@charset "utf-8";

/* CSS Document */
#gmap_wrap {
	width: 100%;
}

#gmap {
	width: 100%;
	height: 500px;
}

#gmap span {
	display: none;
}

#marker_list {
	width: 100%;
	height: 200px;
	overflow-y: scroll;
}

#marker_list li {
	line-height: 20px;
	padding: 10px;
	text-align: left;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 1.4rem;
	color: #000;
}

#marker_list li:last-child {
	display: none;
}

#marker_list li:hover {
	background: #ededed;
}

#marker_list li span {
	display: block;
	width: 20px;
	line-height: 20px;
	margin-right: 10px;
	border-radius: 10px;
	text-align: center !important;
	float: left;
	color: #fff;
}

#marker_list li div {
	margin-left: 30px;
}

@media screen and (max-width: 1000px) {}

@media screen and (max-width: 739px) {
	#gmap {
		height: 350px;
	}

	#marker_list {
		height: 200px;
	}

	#marker_list li {
		line-height: 15px;
		padding: 5px 10px;
		font-size: 1.2rem;
	}
}
