.marker,
.zoomHolder img {
	display: block;
}
.fullscreenToggle,
.zoomIn,
.zoomOut {
	width: 45px;
	height: 45px;
	overflow: hidden;
	position: relative;
	display: block;
	cursor: pointer;
	z-index: 100;
}
.controlHolder {
	position: absolute;
	right: 40px;
	bottom: 175px;
	z-index: 100;

	width: 57px;
	height: 105px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 6px;
}
.zoomIn {
	width: 40px;
	height: 40px;
	background-color: #3c4f5a;
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.4) 0%,
		rgba(255, 255, 255, 0.4) 100%
	);
	border: 1px solid #858070;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.zoomIn:after {
	display: block;
	content: "";
	background: url("../image/ic_more.svg") center no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
}
.zoomOut {
	width: 40px;
	height: 40px;
	background-color: #3c4f5a;
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.4) 0%,
		rgba(255, 255, 255, 0.4) 100%
	);
	border: 1px solid #858070;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.zoomOut:after {
	display: block;
	content: "";
	background: url("../image/ic_minus.svg") center no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
}
.fullscreenToggle {
	background-position: -60px 0;
	cursor: pointer;
	display: none !important;
}
.zoomIn.on,
.zoomOut.on {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.25);
}
.zoomIn.off,
.zoomOut.off {
	opacity: 0.5;
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	cursor: auto;
}
.fullscreenDiv,
.marker {
	left: 0;
	top: 0;
}
.fullscreenToggle.on {
	background-position: -90px 0;
}
.fullscreenToggle.off {
	background-position: -60px 0;
}
.fullscreenDiv {
	width: auto !important;
	height: auto !important;
	right: 0 !important;
	bottom: 0 !important;
	position: absolute !important;
	background: #fff;
	z-index: 999999;
	overflow: hidden;
	touch-action: none;
}
.zoomHolder {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
.marker {
	position: absolute !important;
	bottom: auto !important;
	right: auto !important;
	cursor: pointer;
}
.zoomHolder {
	-webkit-tap-highlight-color: transparent;
}
.fullscreenDiv * {
	touch-action: none;
}
