.map-object{
	width: 100%;
	height: 600px;
}
.map-tabs{
	position: relative;
}
.map-tabs__link{
	border-radius: 100px;
	padding: 24px 30px;

	font-family: var(--font-family);
	font-weight: 700;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	border:none;
	background: #fff;
	color: #212529;
	margin-right: 10px;
	box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}
.map-tabs__link:not(.is-active){
	cursor: pointer;
}
.map-tabs__link.is-active{
	background: #0067c0;
	color: #fff;
}
.map-tabs__links{
	position: absolute;
	z-index: 10;
	padding-top: 50px;
	max-width: 100%;
	overflow-x: auto;
}
.map-tabs__item:not(.is-active){
	display: none;
}
@media (max-width: 999px) {
	.map-tabs__links .container{
		white-space: nowrap;
	}
	.map-tabs__link {
		padding: 14px;
		font-size: 13px;
		margin-right: 0;
	}
}