body {
	background-color: rgb(200, 210, 255);
}
#full-stage {
	white-space: nowrap; 
}
#stage {
	white-space: normal; 
	position: relative;
	width: 900px;
	height: 700px;
	/*left: calc(50% - 450px); */
	left: 20px;
	border: 2px solid rgba(0, 0, 0, 0.5);
	border-radius: 20px;
	box-shadow: 15px 15px 20px rgba(0, 0, 100, 0.2);
	background-color: white;
	display: inline-block;
	overflow: hidden;
}

#inventory {
	white-space: normal; 
	position: relative;
	width: 300px;
	height: 700px;
	left: 50px;
	/* calc(25% + 350px); */
	border: 2px solid rgba(0, 0, 100, 0.21);
	border-radius: 20px;
	box-shadow: inset 10px 10px 10px rgba(0, 0, 100, 0.2);
	background-color: rgb(100, 100, 160);
	display: inline-block;
	overflow-y: auto;

}

.character
{
	position: absolute;
 	 max-width: 40%; 
 	 height: auto;
 	/* drop shadow solution from: http://stackoverflow.com/questions/3186688/drop-shadow-for-png-image-in-css */
  	webkit-filter: drop-shadow(7px 7px 7px rgba(0, 0, 0, 0.2));
 	filter: drop-shadow(7px 7px 7px rgba(0, 0, 0, 0.2));
 	 /* 
 	 	anti-dragging solution from http://stackoverflow.com/questions/12906789/preventing-an-image-from-being-draggable-or-selectable-without-using-js 
 	 */
 	 -moz-user-select: none; /* These user-select properties are inheritable, used to prevent text selection */
    -webkit-user-select: none;
    -ms-user-select: none; /* From IE10 only */
    user-select: none; /* Not valid CSS yet, as of July 2012 */
    -webkit-user-drag: none; /* Prevents dragging of images/divs etc */
    user-drag: none;
}
.character.left {
	left: 0;
	top: 20%;
}

.character.right {
	right: 0;
	top: 20%;
}

.character.inactive {
	-webkit-filter: grayscale(80%); 
	filter: grayscale(80%);
}

#holder {
	position: absolute;
}
.item {
	width: 135px;
	height: 135px;
	opacity: 1;
}

.item.in-use {
	opacity: 0.5;
}

.item.current {
	width: 170px;
	height: 170px;
 	/* drop shadow solution from: http://stackoverflow.com/questions/3186688/drop-shadow-for-png-image-in-css */
  	webkit-filter: drop-shadow(8px 8px 7px rgba(0, 0, 0, 0.4));
 	filter: drop-shadow(8px 8px 7px rgba(0, 0, 0, 0.4));
}

.textbox {
	opacity: 0;
	background-color: rgb(70, 90, 140);
	border: 8px solid rgb(10, 10, 80);
	border-radius: 20px;
	position: absolute;
	bottom: 10px;
	height: 210px;
	width: 90%;
	left: 5%;
	 /* 
 	 	anti-dragging solution from http://stackoverflow.com/questions/12906789/preventing-an-image-from-being-draggable-or-selectable-without-using-js 
 	 */
 	 -moz-user-select: none; /* These user-select properties are inheritable, used to prevent text selection */
    -webkit-user-select: none;
    -ms-user-select: none; /* From IE10 only */
    user-select: none; /* Not valid CSS yet, as of July 2012 */
    -webkit-user-drag: none; /* Prevents dragging of images/divs etc */
    user-drag: none;

    pointer-events: none;
}

h3 {
	margin: 0px;
	margin-left: 10px; 	
	/* This font has a lot of unnecessary space on the bottom */
	margin-bottom: -4px;
	color: white;
	font-size: 48px;
	font-family: "Baloo";
	text-shadow: 4px 4px 2px black; 
}
p {
	color: white;
	font-family: "Nunito";
	margin: 2px;
	margin-left: 8px;
	font-size: 30px;
	text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

.picture {
	position: absolute;

	 /* 
 	 	anti-dragging solution from http://stackoverflow.com/questions/12906789/preventing-an-image-from-being-draggable-or-selectable-without-using-js 
 	 */
 	 -moz-user-select: none; /* These user-select properties are inheritable, used to prevent text selection */
    -webkit-user-select: none;
    -ms-user-select: none; /* From IE10 only */
    user-select: none; /* Not valid CSS yet, as of July 2012 */
    -webkit-user-drag: none; /* Prevents dragging of images/divs etc */
    user-drag: none;
}
.background {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 900px;
	height: 700px;
	/* 
 	 	anti-dragging solution from http://stackoverflow.com/questions/12906789/preventing-an-image-from-being-draggable-or-selectable-without-using-js 
 	 */
 	 -moz-user-select: none; /* These user-select properties are inheritable, used to prevent text selection */
    -webkit-user-select: none;
    -ms-user-select: none; /* From IE10 only */
    user-select: none; /* Not valid CSS yet, as of July 2012 */
    -webkit-user-drag: none; /* Prevents dragging of images/divs etc */
    user-drag: none;
}

.object {
	position: absolute;
	cursor: pointer;
	/* 
 	 	anti-dragging solution from http://stackoverflow.com/questions/12906789/preventing-an-image-from-being-draggable-or-selectable-without-using-js 
 	 */
 	 -moz-user-select: none; 
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none; 
    -webkit-user-drag: none; 
    user-drag: none;
}

.item-over {
	-webkit-filter: brightness(0.75); 
	filter: brightness(0.75);
}

.fade-over {
	opacity: 0;
	position: absolute;
	width: 900px;
	height: 700px;
	background-color: rgba(0, 0, 10, 0.5);
	pointer-events: none;
}

/* for use behind background */
.black-background {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: black;
}

/* for fading scenes in/out */
#black-out {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: black;
}

.level-select-holder
{
	position: absolute;
	width: 900px;
}
.level-select-box {
	background-color: rgb(70, 90, 140);
	border: 8px solid rgb(10, 10, 80);
	border-radius: 20px;
    text-align: center;
    margin: 50px;
    cursor: pointer;
}

/* INTRO */
#boxxo-scared {
	opacity: 0;
	position: absolute;
	max-width: 10%;
	height: auto;
	left: 300px;
	top: 150px;
	animation:1s rotateRight infinite linear;
}

/* From https://stackoverflow.com/questions/10123700/how-to-make-a-picture-rotate-continuously */
@keyframes rotateRight{
    0%{ transform:rotate(0deg); transform-origin:50% 50%; }
    100%{ transform:rotate(360deg); }
}

/* END */
#boxxo-back {
	position: absolute;
	max-width: 30%;
	height: auto;
	left: 300px;
	bottom: 50px;
}

/* MAIN MENU */
#main-menu-background {
	/*background-color: rgb(230, 230, 255);*/
	background-image: url("images/main-menu-background.png");

	width: 900px;
	height: 700px;
}
/* BRICKBRACK'S ROOM */
#table {
	bottom: 50px;
	left: 30px
}

#table-leg {
	bottom: 45px;
	right: 50px;
}

#safe {
	top: 80px;
	left: 120px;
}

#vent {
	right: 50px;
}

#door {
	right: 30px;
	top: 190px;
}

#brickbrack-object {
	position: absolute;
	max-width: 30%;
	height: auto;
	right: 150px;
	top: 175px;
}

/* JUNGLE ROOM */

#key {
	left: 230px;
	bottom: 220px;
}
#fang-object {
	max-width: 30%;
	height: auto;
	left: 210px;
	bottom: 240px;
}

#jungle-door {
	right: 95px;
	bottom: 310px;
}

#seed {
	bottom: 30px;
	left: 30px;
}

#shovel {
	bottom: 270px;
	left: 10px;
}

#bucket {
	bottom: 10px;
	left: 400px;
}

#patch {
	right: 30px;
	bottom: 130px;
}

#vine {
	right: 30px;
	bottom: 170px;
}

/* COOKING ROOM */
#thyme-object {
	max-width: 40%;
	height: auto;
	right: 40px;
	bottom: -10px;
}

#book {
	top: 285px;
	left: 360px;
}

#uv-light {
	top: 42px;
	right: 185px;
	position: absolute;
	/* 
 	 	anti-dragging solution from http://stackoverflow.com/questions/12906789/preventing-an-image-from-being-draggable-or-selectable-without-using-js 
 	 */
 	 -moz-user-select: none; /* These user-select properties are inheritable, used to prevent text selection */
    -webkit-user-select: none;
    -ms-user-select: none; /* From IE10 only */
    user-select: none; /* Not valid CSS yet, as of July 2012 */
    -webkit-user-drag: none; /* Prevents dragging of images/divs etc */
    user-drag: none;

    pointer-events: none;
}

#lamp {
	top: 0px;
	right: 140px;
}

#trash-chute {
	bottom: 15px;
	left: 240px;
}

#smoothie {
	right: 50px;
	bottom: 330px;
}

#blender {
	left: 10px;
	top: 195px;
}

#power-cord {
	left: 99px;
	top: 327px;
}

#lid {
	bottom: 190px;
	left: 220px;
}

#orange {
	top: 40px;
	left: 20px;
}

#banana {
	top: 25px;
	left: 105px;
}

#lime {
	top: 61px;
	left: 200px;
}

#apple {
	top: 40px;
	left: 270px;
}

#lemon-juice {
	top: 5px;
	left: 350px;
}

#coriander {
	top: 36px;
	left: 430px;
}

#lid-2 {
	left: 10px;
	top: 170px;
	position: absolute;
	/* 
 	 	anti-dragging solution from http://stackoverflow.com/questions/12906789/preventing-an-image-from-being-draggable-or-selectable-without-using-js 
 	 */
 	 -moz-user-select: none; /* These user-select properties are inheritable, used to prevent text selection */
    -webkit-user-select: none;
    -ms-user-select: none; /* From IE10 only */
    user-select: none; /* Not valid CSS yet, as of July 2012 */
    -webkit-user-drag: none; /* Prevents dragging of images/divs etc */
    user-drag: none;

    pointer-events: none;
}
/* Needed because I made her graphic too small :( */
#thyme {
	top: 10%;
 	max-width: 60%; 
 	right: -60px;
}

#mess {
	left: 0px;
	top: 350px;
	position: absolute;
	/* 
 	 	anti-dragging solution from http://stackoverflow.com/questions/12906789/preventing-an-image-from-being-draggable-or-selectable-without-using-js 
 	 */
 	 -moz-user-select: none; /* These user-select properties are inheritable, used to prevent text selection */
    -webkit-user-select: none;
    -ms-user-select: none; /* From IE10 only */
    user-select: none; /* Not valid CSS yet, as of July 2012 */
    -webkit-user-drag: none; /* Prevents dragging of images/divs etc */
    user-drag: none;

    pointer-events: none;
}