.mobMenu {
	top: 1vw;
	left: 1vw;
	width: 5vw;
    border-radius: 0;
	margin: 0;
	padding: 0;
    background-color: transparent;
    position: absolute;
    display: none;
	fill: #afaf82;/*#335243;*//*#264c36;*/
	stroke: #cdcdb1;/*#34654b;*/
	z-index: 1;
	opacity: 1;
	transition: opacity 0.2s ease-in-out;
}

.mobClose {
	top: 1vw;
	left: 1vw;
	width: 5vw;
    border-radius: 0;
	margin: 0;
	padding: 0;
    background-color: transparent;
    position: absolute;
    display: none;
	fill: #afaf82;/*#335243;*//*#264c36;*/
	stroke: #cdcdb1;/*#34654b;*/
	z-index: 1;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.menuItem {
    width: 15%;
    height: 3vw;
    border-radius: 0.7vw;
	margin: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 0.5s cubic-bezier(0.25, -0.5, 0.25, 1.64), left 0.5s cubic-bezier(0.25, -0.5, 0.25, 1), background-color 0.2s ease, fill 0.2s ease;
}	

.dark {
    background-color: #335243;/*#264c36;*/
	fill: white;
}

.dark:hover {
	background-color: #34654b;
}

.light {
    background-color: #afaf82;
	fill: black;
}

.light:hover {
	background-color: #cdcdb1;
}

.pos-selected {
    top: 3vw;
    left: 40%;
    background-color: transparent !important;
}

.pos1 {
    top: 10vw;
    left: 5%;
}

.pos2 {
    top: 15vw;
    left: 5%;
}

.pos3 {
    top: 20vw;
    left: 5%;
}

.pos4 {
    top: 25vw;
    left: 5%;
}

.pos5 {
    top: 30vw;
    left: 5%;
}

.pos6 {
    top: 35vw;
    left: 5%;
}

.pos7 {
    top: 40vw;
    left: 5%;
}

@media (max-width: 600px) {	/* Mobile mode */
	.pos-selected {
		top: 7.5vw;
		height: 3vw !important;
	}

	.mobMenu {
		display: flex;
	}

	.mobClose {
		display: flex;
	}

	.menuItem {
		height: 5%;
	}

	.pos1 {
		top: 20%;
	}

	.pos2 {
		top: 30%;
	}

	.pos3 {
		top: 40%;
	}

	.pos4 {
		top: 50%;
	}

	.pos5 {
		top: 60%;
	}

	.pos6 {
		top: 70%;
	}

	.pos7 {
		top: 80%;
	}
}

@media (min-width: 1280px) {	/* When mainArea reaches max width (1024px) */
	.pos-selected {
		top: 40px;
	}
	
	.menuItem {
		height: 40px;
	}

	.pos1 {
		top: 128px;
	}

	.pos2 {
		top: 192px;
	}

	.pos3 {
		top: 256px;
	}

	.pos4 {
		top: 320px;
	}

	.pos5 {
		top: 384px;
	}

	.pos6 {
		top: 448px;
	}

	.pos7 {
		top: 512px;
	}
}