.map-container {
	float: left;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin: 30px 0 0 0;
}
.map-baslik {
	float: left;
	width: 100%;
}
.map-baslik > h1 {
	font-size: 32px;
	font-weight: 600;
	color: #000;
	margin: 0;
}
.map-filter {
	float: left;
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 60px;
	background: #F5F5F5;
	padding: 16px 32px;
}
.map-filter > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.map-filter > div:first-of-type {
	width: 40%;
}
.map-filter > div:nth-of-type(2) {
	width: 60%;
}
.map-filter > div > label {
	font-size: 14px;
	color: #888;
	margin: 0;
}
.map-filter > div > div {
	float: left;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.map-filter > div > div::before {
	position: absolute;
	right: 16px;
	content: "";
	width: 0;
	border-top: 7px rgba(0,0,0,.15) solid;
	border-left: 7px transparent solid;
	border-right: 7px transparent solid;
	background: transparent;
	pointer-events: none;
}
.map-filter > div > div::after {
	position: absolute;
	content: "";
	width: 48px;
	height: 100%;
	top: 0;
	right: 0;
	border-left: 1px rgba(0,0,0,.15) solid;
	background: transparent;
	pointer-events: none;
}
.map-filter > div > div > select {
	float: left;
	width: 100%;
	font-size: 14px;
	background: #FFF;
	border: 1px rgba(0,0,0,.15) solid;
	color: #888;
	padding: 16px 48px 16px 16px;
	appearance: none;
	cursor: pointer;
	height: unset;
}
.map-filter > div > div > select > option {
	font-size: 14px;
}
.map-block {
	float: left;
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 30px;
}
.map-block > .map-list {
	width: 25%;
	height: 641px;
	overflow-y: scroll;
	overflow-x: hidden;
}
.map-block > .map-list::-webkit-scrollbar {
  width: 5px;
}
.map-block > .map-list::-webkit-scrollbar-track {
  background: rgba(0,0,0,.1); 
}
.map-block > .map-list::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.6); 
}
.map-block > .map-list::-webkit-scrollbar-thumb:hover, .map-block > .map-list:hover::-webkit-scrollbar-thumb {
  background: #da0000; 
}
.map-block > .map {
	width: calc(75% - 30px);
	height: 641px;
}
.map-block > .map-markers {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}
.map-block > .map-markers span {
	display: flex;
	align-items: center;
}
.map-list {
	float: left;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: #F5F5F5;
	padding: 20px;
}
.map-list > div {
	float: left;
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.map-list > div .pinPoint {
	flex: 0 0 36px;
	background-size: contain!important;
	text-align: center;
	padding: 21px 0 0 0;
	font-size: 12px;
	font-weight: 900;
}
.map-list > div .pinPoint.pblue {
	background: url("images/markers/blue.svg") top 12px center no-repeat;
}
.map-list > div .pinPoint.pred {
	background: url("images/markers/red.svg") top 12px center no-repeat;
}
.map-list > div ul {
	list-style: none;
	float: left;
	width: 100%;
	display: flex;
	flex-direction: column;
	color: #000;
	font-size: 14px;
	margin: 0;
}
.map-list > div ul > li {
	float: left;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 6px 10px;
}
.map-list > div ul > li:first-of-type {
	font-size: 24px;
	font-weight: 600;
}
.map-list > div ul > li:nth-last-child(-n+4):nth-child(odd) {
	background: rgba(0,0,0,.1);
}
.map-list > div ul > li:last-of-type {
	padding: 6px 0;
	justify-content: flex-end;
}
.map-list > div ul > li .b-detail {
	padding: 4px 12px;
	border: 1px rgba(0,0,0,.15) solid;
	border-radius: 4px;
	transition: all .3s ease;
	color: #000;
}
.map-list > div ul > li .b-detail:hover {
	color: #da0000;
	border-color: #da0000;
	background: #FFF;
}
@media (max-width: 992px){
	.map-container {
		margin: 10px 0 0 0;
		gap: 10px;
	}
	.map-baslik > h1 {
		font-size: 24px;
	}
	.map-filter {
		padding: 10px;
		gap: 10px;
	}
	.map-filter > div {
		gap: 2px;
	}
	.map-filter > div > div > select {
		padding: 8px 31px 8px 8px;
	}
	.map-filter > div > div::before {
		right: 12px;
		border-top-width: 5px;
		border-left-width: 5px;
		border-right-width: 5px;
	}
	.map-filter > div > div::after {
		width: 32px;
	}
	.map-block {
		flex-direction: column;
		gap: 10px;
	}
	.map-block > .map-list {
		order: 2;
		gap: 10px;
		padding: 10px;
		width: 100%;
		max-height: 560px;
	}
	.map-block > .map {
		order: 1;
		width: 100%;
		height: 280px;
	}
	.map-list > div ul > li {
		padding: 3px 6px;
	}
	.map-list > div ul > li:first-of-type {
		font-size: 18px;
	}
}