#preloader {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.75);
	display: flex;
}

.lds-ripple {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
	margin: auto;
	display: none;
}

.lds-ripple div {
	position: absolute;
	border: 4px solid #fff;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}

@keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}

#map {
	position: relative;
}

#map-window {
	cursor: grab;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 1000px;
	background-size: cover;
	overflow: hidden;
}

#demo-overlay {
	display: flex;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 80%);
	z-index: 2;
}

#demo-overlay__welcome {
	margin: auto;
	text-align: center;
}

#demo-controls {
	width: 100%;
	display: flex;
	justify-content: center;
	position: fixed;
	bottom: 50px;
	z-index: 3;
}

#demo-controls a {
	margin: 0 15px;
}

#map-content {
	position: relative;
	display: flex;
	align-items: center;
}

#map-content img {
	display: block;
	width: auto;
	height: auto;
	margin: auto;
	align-self: center;
	flex-shrink: 0;
}

#stages {
	position: absolute;
	right: 20px;
	top: 100px;
}

#stages ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

#stages ul li {
	display: block;
	font-family: Gilroy;
	font-size: 14px;
	padding: 0 14px;
	height: 28px;
	line-height: 30px;
	color: #000;
	background: #EAE6E1;
	border-radius: 20px;
	cursor: pointer;
	transition: 0.2s linear;
	font-weight: bold;
	margin-left: 10px;
}

#stages ul li:hover,
#stages ul li.active {
	background: #ff3b00;
	color: #fff;
}

#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;
}

.cloud {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

.cloud.stage1 {
	background-image: url(../images/map/clouds/stage1.png?5);
	z-index: 6;
}

.cloud.stage2 {
	background-image: url(../images/map/clouds/stage2.png?5);
	z-index: 5;
}

.cloud.stage3 {
	background-image: url(../images/map/clouds/stage3.png?5);
	z-index: 4;
}

.cloud.stage4 {
	background-image: url(../images/map/clouds/stage4.png?5);
	z-index: 3;
}

.cloud.stage5 {
	background-image: url(../images/map/clouds/stage5.png?5);
	z-index: 2;
}

.cloud.stage6 {
	background-image: url(../images/map/clouds/stage6.png?5);
	z-index: 1;
}

.cloud.hidden {
	display: none;
}

.obj {
	position: absolute;
	font-size: 80px;
	transition: 0.2s linear;
}

.obj img {
	transition: 0.2s linear;
}

.obj:not(.unclickable):not(.stage-hidden):hover {
	cursor: pointer;
}

.obj:not(.unclickable):not(.stage-hidden):hover img,
.obj.hover img {
	filter: brightness(1.4) drop-shadow(0px 5px 5px rgb(0,0,0))
}

.obj.hidden {
	display: none;
}

.obj p {
	font-size: 18px;
	color: #beb9a2;
	margin: -20px 0 0 0;
	text-align: center;
	position: relative;
	transition: 0.2s linear;
	text-shadow: 0px 2px 2px rgb(0,0,0);
}

.obj p::before,
.obj p::after {
	display: none;
	content: "";
	width: 15px;
	height: 16px;
	background: url(../images/map/map_wingright_text.png) no-repeat center;
	background-size: 100%;
	position: absolute;
	top: 2px;
}

.obj p::before {
	left: -18px;
}

.obj p::after {
	transform: matrix(-1, 0, 0, 1, 0, 0);
}

.obj:not(.unclickable):not(.stage-hidden) p::before,
.obj:not(.unclickable):not(.stage-hidden) p::after {
	/*display: inline-block;*/
}

.obj:not(.unclickable):not(.stage-hidden):hover p,
.obj.hover p {
	color: #edeada;
	text-shadow: 0px 4px 4px rgb(0,0,0);
}

.obj.hover {
	z-index: 12 !important;
}

.stage-hidden {
	opacity: 0.4;
	filter: grayscale(0.7);
}

#side {
	display: block;
	width: 400px;
	position: absolute;
	z-index: 3;
	left: 0;
	top: 0;
	bottom: 0;
	font-family: AngleciaProDisplay;
	background: #000;
	color: #000;
}

#side.hide {
	display: none;
}

#side-hide {
	background: url(../images/close.png);
	background-size: 100%;
	width: 18px;
	height: 18px;
	position: absolute;
	right: 35px;
	top: 115px;
	cursor: pointer;
}

#side-image {
	background-position: top center;
	background-size: 500px auto;
	width: 100%;
	height: 300px;
}

#side-content {
	background: url(../images/map/side.png?2) no-repeat bottom center;
	background-size: 100% 100%;
	background-position: 0 0;
	height: calc(100% - 227px);
	width: 100%;
	padding: 80px 0 35px 35px;
	display: flex;
	flex-direction: column;
	margin-top: -73px;
}

#location-title {
	font-size: 18px;
	line-height: 18px;
	position: relative;
	margin: 0 0 35px;
	text-align: center;
	padding-right: 35px;
}

#location-title::after {
	display: block;
	content: "";
	width: 36px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 38px;
	left: 50%;
	margin-left: -37px;
}

#location-name {
	text-align: center;
	font-size: 32px;
	line-height: 42px;
	padding-right: 35px;
	margin: 20px 0;
}

#side-text {
	position: relative;
	padding-right: 35px;
	font-family: 'Source Serif Pro', serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 25px;
	color: #3a3934;
}

#side-links {
	text-align: center;
	margin-top: auto;
	padding-right: 35px;
}

#side-links__content {
	display: flex;
	flex-wrap: wrap;
}

#side-links__content a {
	display: block;
	width: 68px;
	height: 68px;
	background: #333;
	border-radius: 34px;
	overflow: hidden;
	margin: 14px 19px 0 0;
}

#side-links__content a:nth-child(4n) {
	margin-right: 0;
}

#side-links__content a img {
	max-width: 100%;
}

#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 li {
	cursor: pointer;
	font-size: 30px;
	color: #000;
	font-weight: 500;
	width: 44px;
	height: 48px;
	line-height: 48px;
}

#zoom li:last-child {
	background: #EAE6E1;
}

#info {
	font-family: Gilroy;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.81) 100%);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	color: #fff;
	display: flex;
	align-items: center;
	z-index: 11;
	font-size: 16px;
	line-height: 20px;
}

#info-content__heading {
	font-size: 36px;
	line-height: 42px;
	margin-bottom: 35px;
}

#info-content__wrapper {
	position: absolute;
	left: 0;
	right: 0;
}

#info-content {
	max-width: 1000px;
	margin: auto;
}

#info p#info-content__description {
	margin: 35px 0;
}

#info img {
	max-height: 40%;
	margin-top: 50px;
}

#info b {
	color: #ff3b00;
}

#info .btn {
	height: 52px;
	line-height: 52px;
	color: #fff;
	text-decoration: none;
	padding: 0 32px;
	font-weight: 700;
	border-radius: 30px;
	background: #ff3b00;
	font-size: 26px;
	display: inline-block;
}

#info .btn i {
	width: 24px;
	height: 25px;
	background: url(../images/map/goToMap.png) no-repeat center;
	background-size: 100%;
	display: inline-block;
	margin-left: 12px;
	vertical-align: -5%;
}

@media (max-width: 940px) {
	#zoom {
		bottom: 100px;
	}

	#stages ul {
		flex-direction: column;
	}

	#stages ul li {
		border-radius: 0;
		text-align: center;
	}

	#map-close {
		top: 190px;
	}

	#location-name {
		font-size: 24px;
		line-height: 1.3;
		margin: 10px 0;
	}

	#side-links__content {
		padding-bottom: 48px;
	}

	#side-links__content a {
		width: 48px;
		height: 48px;
	}
}

@media (max-height: 670px) {
	#location-title {
		display: none;
	}

	#side-content {
		padding-top: 35px;
	}
}

.spawn-point {
	position: absolute;
	width: 5px;
	height: 5px;
	background-color: #ff3b00;
	border-radius: 5px;
}