.map_objects_block .nav-tabs {
	border: 0;
}

.map_objects_block .nav-item {
	margin-right: 1rem;
	margin-bottom: 1rem;
}

.map_objects_block .nav-tabs .nav-link {
	font-size: 1.5rem;
	color: var(--theme-skit-color-grey);
	padding: 0;
	background-color: #fff;
	border: none;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.map_objects_block .nav-tabs .nav-link:hover {
	color: var(--theme-skit-color);
}

.map_objects_block .nav-tabs .nav-link.active {
	color: var(--theme-skit-color);
	border-bottom: 1px dashed currentColor;
}

/*map_objects*/
.map_objects_wrap {
	padding: 1rem;
	border: 1px solid #E3E3E3;
	border-radius: 1rem;
}

.map_objects {
	width: 100%;
	height: 600px;
	border-radius: 1rem;
	overflow: hidden;
}

.map_objects_all {
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 700;
	color: inherit;
	cursor: pointer;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.map_objects_all:hover {
	color: var(--theme-skit-color);
}

.map_objects_item {
	display: -webkit-flex;
	display: flex;
	cursor: pointer;
}

.map_objects_item_icon {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 50px;
	min-width: 50px;
	min-height: 50px;
	margin-right: 1rem;
	background: #F4F4F4;
	border-radius: 5px;
}

.map_objects_item_icon img {
	max-width: 30px;
	max-height: 30px;
}

.map_objects_item_info {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
}

.map_objects_item_title {
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 700;
	color: inherit;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.map_objects_item:hover .map_objects_item_title {
	color: var(--theme-skit-color);
}

.map_objects_item_desc {
	font-size: 0.9rem;
	line-height: 1.2;
	color: inherit;
	margin-top: 0.25rem;
	opacity: 0.5;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.map_objects_item:hover .map_objects_item_desc {
	opacity: 1;
}

@media all and (max-width: 767px){
	.map_objects {
		height: 350px;
	}
}