.yamap {
	display: BLOCK;
	position: relative;
}

#map {
	display: BLOCK;
	position: relative;
	width: 100%;
	min-height: 440px;
	height: calc(100vh - 400px);
	border-radius: 6px;
	overflow: hidden;
}

ymaps[class*="map-copyrights-promo"] {
	display: none;
}

.adressList {
	display: FLEX;
	flex-direction: COLUMN;
	position: absolute;
	top: 15px;
	left: 15px;
	bottom: 15px;
	width: 310px;
	z-index: 10;
	border-radius: 5px;
	box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
	border: 1px solid #303030;
	background: rgb(38 38 38 / 95%);
	backdrop-filter: blur(3px);
	max-height: 100%;
	overflow-y: overlay;
}

.adressList> .adressListItem {
	display: flex;
	cursor: pointer;
	position: relative;
	flex-wrap: wrap;
	padding: 15px;
	color: #fff;
	border-bottom: 1px solid rgb(255 255 255 / 7%);
	transition: all 0.1s;
	padding-left: 50px;
	flex-direction: COLUMN;
}

.adressList> .adressListItem> img {
	position: absolute;
	left: 15px;
}

.adressList> .adressListItem> span {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin: 0 0 7px;
}

.adressList> .adressListItem a {
	color: #fff;
	border-bottom: 1px dotted;
	display: inline-block;
	width: max-content;
	font-size: 13px;
	color: #e5cfff;
}

.adressList> .adressListItem a:hover {
	color: #fff;
}

.adressList> .adressListItem:hover {
	background-color: #242424;
}

.adressList> .adressListItem:last-child {
	margin: 0;
}