.leaflet-container {
	width: 100%;
	aspect-ratio: 16/10;
	max-height: 80vh;
}

@media (max-width: 768px) {
	.leaflet-container {
		aspect-ratio: 4/5;
		max-height: 60vh;
	}
}

.map-sidebar {
	display: flex;
	gap: 64px;
	background: #fafafa;
	padding: 32px 32px;
	border: 1px solid #eee;
}

.sidebar-left,
.sidebar-right {
	flex: 1;
}
.show-all-cities{
	color: #666666 !important;
	font-size: 16px !important;
	font-weight: 800;
	line-height: 24px;
    transition:  color 0.4s ease-in-out;
	cursor: pointer;
	position: relative;
}
.show-all-cities::before{
	content: '';
        position: absolute;
        bottom: -0px;
        left: 0;
        width: 0%;
        height: 2px;
	background-color: #2ea3f2;
        transition: width 0.4s ease-in-out;
        will-change: width;
        z-index: 99999999999;
}
.show-all-cities:hover{
	 color: #2ea3f2!important;
}
.show-all-cities:hover::before{
	width: 100%;
}
.cities-list ul {
	list-style: none !important;
	padding-left: 0 !important;
}

.cities-list li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 6px;
}

.cities-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background-image: url(https://flowapps.pl/wp-content/uploads/2022/05/fajka.svg);
	background-size: 18px 18px;
	background-repeat: no-repeat;
}

.voivodes-list {
	list-style: none;
	padding: 0 !important;
	margin: 0 !important;
	list-style-type: none !important;
}

.voivodes-list li {
	padding: 6px 10px;
	cursor: pointer;
	border-radius: 6px;
}

.voivodes-list li:hover {
	background: #e5f3ff;
}

.voivodes-list li.active {
	background: #2ca3f2;
	color: #fff;
	font-weight: bold;
}

.cities-list ul {
	padding-left: 18px;
}

@media (max-width: 460px) {
	.map-sidebar {
		gap: 12px;
		padding: 24px 12px;
	}

	.map-sidebar h3 {
		font-size: 17px;
	}

	.voivodes-list li,
	.cities-list li {
		font-size: 15px;
	}
}
