.kd-stores {
	position: relative;
	display: flex;
	column-gap: 20px;
	height: 750px;
}

.kd-stores .kd-h3 {
	margin-bottom: 16px;
}

.kd-stores-city-block {
	display: flex;
	width: 50%;
	flex-direction: column;
}

.kd-stores-city-selector {
	display: flex;
	gap: 12px;
	height: 48px;
	min-height: 48px;
	border: 1px solid var(--medium-grey-color);
	padding: 0 16px;
	position: relative;
	margin-bottom: 12px;
}

.kd-stores-city-selector-img-serch {
	width: 24px;
}

.kd-stores-map {
	width: 55%;
	height: 100%;
	position: relative;
	margin-right: calc(50% - 50vw + 10px);
	width: calc(100% + (50vw - 50%));
}

.ymaps-2-1-79-map {
	height: 100% !important;
	width: 100% !important;
}

#zoom-controls {
	position: absolute;
	right: 20px;
	bottom: 45px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	z-index: 999;
}

#zoom-controls button {
	padding: 8px 12px;
	font-size: 16px;
	cursor: pointer;
	border: none;
	background-color: var(--white-color);
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
	border-radius: 4px;
}

.kd-stores-city-selector-search {
	width: 100%;
	padding: 8px;
	box-sizing: border-box;
	border-bottom: 1px solid #eee;
	all: unset;
	color: #2b2b2b;
	transition: .2s;
	width: 100%;
	padding-right: 24px;
}

.kd-stores-city-selector-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: var(--white-color);
	border: 1px solid var(--white-grey-color);
	z-index: 10;
	overflow-y: auto;
	max-height: 190px;
}

.kd-stores-city-selector-dropdown.is-open {
	display: block;
}

.kd-stores-city-selector-list li {
	display: flex;
	padding: 8px 12px;
	align-items: center;
	gap: 8px;
	align-self: stretch;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
}

.kd-stores-city-selector-list li.is-active {
	background-color: var(--grey-color);
	color: var(--white-color);
}

.kd-stores-city-selector-list li:not(.is-active):hover {
	background-color: #f4f4f4;
}

.kd-stores-city-selector-search {
	padding-right: 36px;
}

.kd-stores-city-selector-clear {
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: none;
	border: none;
	cursor: pointer;
}

.kd-stores-shops-list {
	flex-grow: 1;
	overflow-y: auto;
	min-height: 0;
}

.kd-stores-shop-card {
	padding: 16px 24px;
	border-bottom: 1px solid var(--white-grey-color);
	transition: background-color .3s;
	cursor: pointer;
}

.kd-stores-shop-card.--maps {
	padding: 6px 8px 6px 4px;
	border: none;
}

.ymaps-2-1-79-balloon__close-button {
	width: 40px !important;
}

.kd-shops-page-shop-item:hover .kd-stores-shop-card,
.kd-shops-page-shop-item.is-active .kd-stores-shop-card {
	background-color: #f4f4f4;
}

.kd-stores-shop-card-title {
	color: var(--grey-color);
	font-size: 14px;
	font-weight: 700;
	line-height: 17px;
	letter-spacing: 1.68px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.kd-stores-shop-card-metro {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 8px;
}

.kd-stores-shop-card-metro-item {
	align-items: center;
	display: flex;
	gap: 8px;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
}

.kd-stores-shop-card-metro-color {
	border-radius: 50%;
	display: block;
	height: 5px;
	width: 5px;
}

.kd-stores-shop-card-address {
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	margin-bottom: 12px;
}

.kd-stores-shop-card-route {
	align-items: center;
	color: #2b2b2b;
	display: inline-flex;
	gap: 4px;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
	text-decoration: underline;
	transition: .3s;
}

.kd-stores-shop-card-route:hover {
	opacity: .6;
}

.kd-stores-shop-card-route img {
	width: 16px;
	height: 16px;
}

.scroll-top-button {
    bottom: 28px;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,.12);
    position: fixed;
    right: -97px;
    transition: .3s;
    z-index: 2
}

.scroll-top-button--show {
    transform: translateX(-125px)
}


.kd-stores-city-selector-dropdown::-webkit-scrollbar,
.kd-stores-shops-list::-webkit-scrollbar {
	height: 4px;
	width: 4px
}

.kd-stores-city-selector-dropdown::-webkit-scrollbar-track,
.kd-stores-shops-list::-webkit-scrollbar-track {
	background-color: transparent
}

.kd-stores-city-selector-dropdown::-webkit-scrollbar-thumb,
.kd-stores-shops-list::-webkit-scrollbar-thumb {
	background-color: #2b2b2b;
	border-radius: 2px
}

@media(max-width: 1279px) {
	.kd-stores {
		flex-direction: column;
		grid-gap: 24px;
		height: auto;
	}

	.kd-stores-city-block {
		width: 100%;
	}

	.kd-stores-map {
		margin-left: -40px;
		margin-right: -40px;
		width: calc(100% + 80px);
		height: 787px;
	}
}

@media(max-width: 767px) {
	.kd-stores-map {
		height: 412px;
	}

	.kd-stores-map {
		margin-left: -16px;
		margin-right: -16px;
		width: calc(100% + 32px);
	}

	.ymaps-2-1-79-balloon_layout_panel {
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #fff;
		overflow: hidden !important;
	}

	.kd-stores-map #zoom-controls {
		display: none;
	}
}