.slm-map-wrapper{
	width:100%;
	box-sizing:border-box;
}

.slm-tabs-only{
	width:100%;
}

.leaflet-container{
	width:100%;
	height:100%;
}
.slm-wrapper{
	position:relative;
	box-sizing:border-box;
	width:100%;
}
body .slm-tabs{
	display:flex;
	flex-wrap:wrap;
}

body .slm-tab{
	position: relative;
	appearance:none;
	border:0;
	background: transparent;
	color:#222;
	font-size:14px;
	font-weight:400;
	text-transform: uppercase;
	padding: 14px 20px !important;
	letter-spacing: 0.5px;
	border-radius:999px;
	cursor:pointer;
	transition:all .25s ease;
	line-height: 1.4em;
}

body .slm-tab:not(:last-child)::before {
	content: "";
	background-color: rgba(13, 13, 13, 0.1);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	height: 20px;
	width: 1px;
}
body .slm-tab:hover,
body .slm-tab.is-active{
	background:#434343;
	color:#fff;
}

.slm-map{
	width:100%;
	min-height:420px;
	border-radius:6px;
	overflow:hidden;
	background:#ddd;
}

.slm-map .leaflet-container{
	width:100%;
	height:100%;
	font-family:inherit;
	background:#ddd;
}

.slm-map .leaflet-control-attribution{
	font-size:11px;
}


.slm-div-icon{
	background:transparent;
	border:0;
}

.slm-marker{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	transform:translateY(-6px);
	white-space:nowrap;
}

.slm-marker__label{
	background:#ff472f;
	color:#fff;
	font-size:14px;
	font-weight:600;
	line-height:1;
	padding:13px 20px;
	border-radius:999px;
	box-shadow:0 10px 24px rgba(255,71,47,.25);
}

.slm-marker__dot{
	width:8px;
	height:8px;
	border-radius:50%;
	background:#ff472f;
	margin-top:8px;
}

.slm-empty{
	padding:20px;
	background:#f8f8f8;
	border:1px solid #e5e5e5;
	border-radius:12px;
}

@media (max-width: 1024px){
	.slm-wrapper{
		padding:20px;
	}
	.slm-tab{
		padding:12px 18px;
		font-size:14px;
	}
	.slm-map{
		min-height:380px;
	}
}

@media (max-width: 767px){
	.slm-tabs{
		justify-content:flex-start;
		gap:10px;
	}
	.slm-tab{
		font-size:13px;
		padding:11px 16px;
	}
	.slm-map{
		min-height:340px;
	}
	.slm-marker__label{
		font-size:12px;
		padding:11px 16px;
	}
}