.pano-menu-toggle {
	position: fixed;
	left: 2.5%;
	bottom: 1%;
	cursor: pointer;
	outline: 0;
	user-select: none;
	z-index: 103;
	display: flex;
	align-items: center;
}
.pano-menu-toggle-icon {
	position: relative;
	background-color: #00923A;
	width: 51px;
	height: 51px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: 4px solid #FFFFFF;
}
.pano-menu-toggle-text {
	position: absolute;
	right: -105px;
    top: 11px;
	height: 41px;
	width: 117px;
	background: #565656;
	border-radius: 0 41px 41px 0;
	z-index: 0;
	color: white;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pano-menu-toggle.active .pano-menu-toggle-icon {
	background: transparent;
	border-color: transparent;
	/* width: unset;
	height: unset; */
}
.pano-menu-toggle.active .pano-menu-toggle-text {
	display: none;
}
@media (min-width: 576px) {
	.pano-menu-toggle {
		left: 6%;
		bottom: 6%;
	}
}

.pano-menu-toggle.active:after {
	content: 'Скрыть';
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	position: relative;
	top: -1px;
	left: 5px;
	padding-right: 10px;
	display: inline-block;
}

@media (min-width: 1400px) {
	.pano-menu-toggle {
		left: 50%;
		margin-left: -630px;
	}
}

.pano-menu {
	position: fixed;
	display: none;
	flex-direction: column;
	width: 100%;
	max-width: 345px;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #878786;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
	z-index: 101;
	box-sizing: border-box;
	padding: 18px 15px 50px 15px;
}
@media (min-width: 576px) {
	.pano-menu {
		width: 90%;
		max-width: 475px;
		height: unset;
		max-height: 90%;
		bottom: 6.5%;
		left: 6%;
		top: unset;
		padding: 25px 22px 50px 22px;
		border-radius: 20px;
	}
}

@media (min-width: 1400px) {
	.pano-menu {
		width: 1260px;
		bottom: 5%;
		left: 50%;
		margin-left: -630px;
	}
}

.pano-menu.active {
	display: flex;
}

.pano-map-container {
	display: flex;
	flex-direction: column;
}

.pano-map {
	position: relative;
}

.pano-map-title {
	font-size: 120%;
	line-height: 100%;
	margin-bottom: 16px;
}

.pano-map-pic {
	width: 100%;
	max-width: 310px;
}
@media (min-width: 576px) {
	.pano-map-pic {
		width: 100%;
		max-width: unset;
	}
}

.pmap-dot {
	position: absolute;
	border: 4px solid transparent;
	background-color: rgba(255,255,255,0.96);
	border-radius: 24px;
	cursor: pointer;
	display: flex;
	font-weight: 900;
	font-size: 0.0001rem;
	color: #000;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (min-width: 576px) {
	.pmap-dot {
		border: 6px solid white;
		line-height: 100%;
	}
}

.pmap-dot:hover {
	font-size: 14px;
	border-right-width: 14px;
	z-index: 105;
}

.pmap-round {
	width: 14px;
	height: 14px;
	border-radius: 50%;
}
@media (min-width: 576px) {
	.pmap-round {
		width: 16px;
		height: 16px;
		border-radius: 50%;
	}
}

.pmap-dot:hover .pmap-round {
	margin-right: 8px;
}

.pano-menu-list {
	display: flex;
	flex-wrap: wrap;
}

.pm-item {
	position: relative;
	width: 100%;
	padding: 10px 5px 10px 36px;
	border-radius: 5px;
	font-size: 0.9rem;
	font-weight: 900;
	flex-grow: 0;
	cursor: pointer;
	box-sizing: border-box;
}
.pm-item.active {
	background-color: #fff;
	color: #333333;
}

@media (min-width: 576px) {
	.pm-item {
		width: 50%;
	}
}

.pm-round {
	position: absolute;
	left: 6px;
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
}

.pm-icon {
	position: absolute;
	left: 9px;
	width: 22px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-left: -4px;
}
