.map {
	position: relative;
	display: block;
	width: 90vw;
	height: 90vh;
}

.map-window {
	cursor: grab;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-size: cover;
	overflow: hidden;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

.map-content {
	position: relative;
	display: flex;
	align-items: center;
}

.map-content img {
	display: block;
	width: auto !important;
	max-width: none !important;
	height: auto;
	margin: auto;
	align-self: center;
	flex-shrink: 0;
	pointer-events: none;
}

.map-close {
	width: 44px;
	height: 44px;
	background: #EAE6E1 url(../images/close-dark.png) no-repeat center;
	background-size: 16px;
	display: block;
	position: absolute;
	right: 0px;
	top: 40px;
	border-radius: 22px;
}

.zoom {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: #ff0000;
	border-radius: 20px;
	overflow: hidden;
	background: #D7CEC3;
	font-family: Gilroy;
}

.zoom ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.zoom-element {
	cursor: pointer;
	font-size: 30px;
	color: #000;
	font-weight: 500;
	width: 44px;
	height: 48px;
	line-height: 48px;
}

.zoom-element:last-child {
	background: #EAE6E1;
}

@media (max-width: 940px) {
	.zoom {
		bottom: 100px;
	}

	.map-close {
		top: 190px;
	}
}

.spawn-point {
	position: absolute;
	width: 5px;
	height: 5px;
	background-color: #ff3b00;
	border-radius: 5px;
}