* {
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	background: #CAD4EC;
}

.iso-map-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-direction: column;
}

#iso-description {
	font-family: 'Fredoka One', cursive;
	font-size: 40px;
	color: #eee;
	background: #B0C3EB;
	padding: 10px;
	border-radius: 20px;
}

#isometrizer {
	position: relative;
}

#iso-cloud {
	position: absolute;
	width: 100%;
	height: 100%;
}

.map-image {
	display: block;
	border: 40px solid #5E4769;
	border-bottom: 100px solid #5E4769;
	padding: 0;
}

img {
	display: block;
}

.plane-left {
	pointer-events: none;
}

#button-fake {
	width: 50px;
	height: 50px;
	border-radius: 50px;
	position: absolute;
	background: #523E5B;
	bottom: 30px;
	left: calc(50% - 12.5px);
	cursor: pointer;
}

.buildings {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.building {
	background: #FEFEFC;
	position: absolute;
}

.building.naver {
	display: flex;
	width: 200px;
	height: 100px;
	bottom: 180px;
	left: 140px;
	align-items: center;
	justify-content: center;
}

.building.michellan {
	width: 310px;
	height: 100px;
	bottom: 180px;
	left: 390px;
}

#naver-logo {
	height: 30px;
}

.building.benz {
	width: 120px;
	height: 100px;
	bottom: 330px;
	left: 220px;
}

#middle1 {
	bottom: 450px;
	left: 220px;
}
#small1 {
	bottom: 500px;
	left: 270px;
}

.building.gas {
	width: 60px;
	height: 100px;
	bottom: 330px;
	left: 92px;
}

.building.aptA {
	width: 150px;
	height: 80px;
	bottom: 330px;
	left: 390px;
}

.building.aptB {
	width: 150px;
	height: 80px;
	bottom: 460px;
	left: 390px;
}

.building.aptC {
	width: 150px;
	height: 80px;
	bottom: 590px;
	left: 390px;
}

.building.aptSA {
	width: 110px;
	height: 80px;
	bottom: 330px;
	left: 590px;
}

.building.aptSB {
	width: 110px;
	height: 80px;
	bottom: 460px;
	left: 590px;
}

.building.aptSC {
	width: 110px;
	height: 80px;
	bottom: 590px;
	left: 590px;
}

.building.small {
	width: 50px;
	height: 50px
}

.building.middle {
	width: 100px;
	height: 50px
}

.building.big {
	width: 100px;
	height: 100px;
}

#small2 {
	left: 935px;
	bottom: 330px;
}

#small3 {
	left: 390px;
	top: 100px;
}
#small4 {
	left: 440px;
	top: 100px;
}
#small5 {
	left: 490px;
	top: 100px;
}
#small6 {
	width: 55px;
	left: 590px;
	top: 100px;
}
#small7 {
	width: 55px;
	left: 645px;
	top: 100px;
}

#big1 {
	left: 240px;
	top: 50px;
}

.stem {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.leaf {
	position: absolute;
	width: 40px;
	height: 40px;
	background: #98BD92;
}

#tree-1 {
	left: 130px;
	bottom: 500px;
}

#tree-2 {
	left: 280px;
	top: 220px;
}

#tree-3 {
	left: 130px;
	bottom: 500px;
}

#tree-4 {
	right: 120px;
	top: 120px;
}

#tree-5 {
	right: 290px;
	bottom: 250px;
}

.cloud {
	background: #fff;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;

	-webkit-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);

	height: 120px;
	position: relative;
	width: 350px;
}

.cloud:after, .cloud:before {
    background: #fff;
	content: '';
	position: absolute;
}

.cloud:after {
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;

	height: 100px;
	left: 50px;
	top: -50px;
	width: 100px;
}

.cloud:before {
	-webkit-border-radius: 200px;
	-moz-border-radius: 200px;
	border-radius: 200px;

	width: 180px;
	height: 180px;
	right: 50px;
	top: -90px;
}

@-webkit-keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

@-moz-keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

@keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

/* ANIMATIONS */

.x1 {
	-webkit-animation: animateCloud 35s linear infinite;
	-moz-animation: animateCloud 35s linear infinite;
	animation: animateCloud 35s linear infinite;

	-webkit-transform: scale(0.65);
	-moz-transform: scale(0.65);
	transform: scale(0.65);
}

.x2 {
	-webkit-animation: animateCloud 20s linear infinite;
	-moz-animation: animateCloud 20s linear infinite;
	animation: animateCloud 20s linear infinite;

	-webkit-transform: scale(0.3);
	-moz-transform: scale(0.3);
	transform: scale(0.3);
}

.x3 {
	-webkit-animation: animateCloud 30s linear infinite;
	-moz-animation: animateCloud 30s linear infinite;
	animation: animateCloud 30s linear infinite;

	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	transform: scale(0.5);
}

.x4 {
	-webkit-animation: animateCloud 18s linear infinite;
	-moz-animation: animateCloud 18s linear infinite;
	animation: animateCloud 18s linear infinite;

	-webkit-transform: scale(0.4);
	-moz-transform: scale(0.4);
	transform: scale(0.4);
}

.x5 {
	-webkit-animation: animateCloud 25s linear infinite;
	-moz-animation: animateCloud 25s linear infinite;
	animation: animateCloud 25s linear infinite;

	-webkit-transform: scale(0.55);
	-moz-transform: scale(0.55);
	transform: scale(0.55);
}

.plane-left {
	float: left;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.marker-wrapper {
	width: 50px;
	height: 50px;
	position: absolute;
	animation: wiggle 0.5s ease-out infinite;
	animation-direction: alternate;
}

.marker {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	font-family: 'Fredoka One', cursive;
	font-size: 40px;
	color: #FCCB5F;
	background: #EA364E;
}

@keyframes wiggle {
	0% {
        transform: translateZ(0px);
    }
    100% {
        transform: translateZ(35px);
    }
}
