.content-block{
	padding-top: 90px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.footer{
	margin-top: 0;
}
#map{
	width: 50%;
	height: calc( 100vh - 90px );
	flex-shrink: 0;
}

#mlist{
	width: 50%;
	height: calc( 100vh - 90px );
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: rgba(255,255,255,0.9);
	flex-shrink: 0;
}
.mlist-filter{
	width: 100%;
	padding: 10px 20px;
}
.mf-district{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.mf-district .btn{
	margin: 5px;
}

.mlist-block{
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 25px 70px;
}
.mb-item{
	width: 100%;
	border: 1px solid gray;
	border-radius: 8px;
	margin: 0px 0 20px;
	padding: 15px 170px 15px 20px;
	transition: 0.5s;
	line-height: 1.5em;
	position: relative;
}
.mb-item:hover{
/* 	background-color: rgba(0, 102, 51, 0.2); */
}
.mb-item hr{
	margin: 10px 0;
}
.mbi-name{
	font-weight: bold;
}
.mbi-en{
	font-size: 14px;
	font-weight: bold;
}
.mbi-address{

}
.mbi-phone{

}
.mbi-other{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.mbio{

}

.mb-item .fai{
	margin-right: 5px;
	color: #666;
}
.mbio .fai{
	margin-right: 10px;
}

.company-panel .cpfai{
	margin-right: 5px;
	color: #198754;
}
.cp-close{
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
}
.cpcicon{
	color: rgba(0, 102, 51, 0.8);
	transition: 0.5s;
}
.cp-close:hover .cpcicon{
	color: rgba(0, 102, 51, 1);
}
.mbi-p{
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 150px;
	background-color: rgba(0, 102, 51, 0.2);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.popbox{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}
.company-panel{
	margin-top: -10vh;
	width: 50%;
	max-width: 750px;
	max-height: 80vh;
	background-color: rgba(255,255,255,0.95);
	box-shadow: 5px 5px 20px rgba(0,0,0,0.3);
	padding: 40px 25px 50px;
	border-radius: 10px;
	position: relative;
	overflow-y: auto;
}

.cp-name{
	font-size: 26px;
	font-weight: bold;
}
.cp-ename{
	font-size: 16px;
}
.cp-row{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.cpr-photo{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: calc( ( 100% - 40px ) / 3 );
	padding-top: 40%;
	margin-right: 20px;
}
.cpr-photo:last-child{
	margin-right: 0px;
}

@media(max-width:768px){
	#map{
		display: none;
	}

	#mlist{
		width: 100%;
		height: auto;
		overflow-x: hidden;
		overflow-y: auto;
		flex-shrink: 0;
	}
}
