
.shop-list{
	position: relative;
	width: 100%;
	height: 100%;
}
.ballon{
	display: flex;
	justify-content: flex-start;
	width: 100%;
	gap: 20px
}
.ballon_media{
	width: 100%;
	max-width: 160px;
	background-position: 50% 50%;
	background-size: cover;
}
.ballon_content{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
}
.ballon_content_title{
	width: 100%;
	text-align: left;
	border-bottom: 1px solid #eee;
}
.ballon_content_info{
	margin-top: 20px;
	list-style: none;
}
.ballon_content_action{
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin: 20px 0;
	text-align: center;
}
.action{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
	opacity: 0;
	z-index: 999;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	transition: all 0.3s ease;
}
.action button{
	cursor: pointer;
	background-color: transparent;
	float: right;
	border: 1px solid #00b894;
	padding: 8px 15px;
	font-weight: bold;
	border-radius: 5px;
	transition: all 0.3s ease;
}
.action_btn{
	display: flex;
	justify-content: space-between;
	gap: 20px
}
.action button:hover{
	background-color: #00b894;
	color: #fff;
	transition: all 0.3s ease;
}
.action.active{
	padding: 10px 15px;
	min-height: 40px;
	height: auto;
	opacity: 1;
	transition: all 0.3s ease;
}
@media screen and (min-width: 900px) {
	.action{
		flex-direction: row;
	}
}
.ballon_content_action button{
	cursor: pointer;
	width: 100%;
	height: 35px;
	border: none;
	text-align: center;
	border-radius: 5px;
	color: #fff;
	font-weight: bold;
}
.ballon_content_action button[data-val="y"]{
	background-color: #00b894;
}
.ballon_content_action button[data-val="n"]{
	background-color: #ff7675;
}
#map_container {
	width:100%;
	height:100vh;
	display:block;
}
.marker-circ {
	color: #fff;
	position: relative;
	font-size: 14px;
	font-weight: normal;
	height: 80px;
	line-height: 56px;
	width: 58px;
}
.marker-circ .fa{
	position: absolute;
	font-size: 1.6rem;
	top: 15px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.marker-circ span{
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.claster {
	color: #ffffff;
	position: relative;
	font-size: 14px;
	font-weight: bold;
	height: 80px;
	line-height: 56px;
	width: 58px;
}
.claster .fa{
	position: absolute;
	font-size: 1.3rem;
	top: 12px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.claster span{
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.object-title{
	text-align: center;
	margin-bottom: 10px;
}
.balloon-info{
	margin: 0;
	padding: 0;
}
.balloon-info li{
	list-style-type: none;
}
.object-img, .image-popup{
	display: block;
	width: 100%;
	max-width: 200px;
	height: auto;
}
.object-detail{
	text-align: center;
	background-color: tomato;
	border-radius: 3px;
	padding: 10px;
}