@charset "utf-8";

#shop-body {
	margin: 50px;
	width: 200px;
	height: 200px;
	float: left;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.glass {
	position: absolute;
	background: linear-gradient(60deg, cyan, white 50%, cyan); 
	background: -webkit-linear-gradient(30deg, cyan, white 50%, cyan); 
	border: 3px solid blue;
}
#door {
	width: 50px;
	height: 100px;
	left: 20px;
	bottom: 0px;
}
#window {
	width: 80px;
	height: 60px;
	right: 20px;
	bottom: 40px;
}
#shop-container {
	text-align: center;
}
#shop-pane {
	display: inline-block;
}
#v-angle {
	float: left;
	line-height: 50px;
	white-space: pre;
}
#h-angle {
	clear: left;
	float: left;
}
#h-angle input {
	margin-left: 50px;
	width: 200px;
}

#shop-body > div {
	position: absolute;
}
#front-roof {
	width: 200px;
	height: 77px;
	background-color: #888;
	-webkit-transform: translate3d(0px, -6px, 40px) rotateX(30deg);
	transform: translate3d(0px, -6px, 40px) rotateX(30deg);
	text-align: center;
	line-height: 77px;
	color: white;
	font-size: 50px;
}
#side-roof {
	width: 120px;
	height: 67px;
	background: -webkit-linear-gradient(30deg, #444, #444 76%, transparent 76%, transparent);
	background: linear-gradient(60deg, #444, #444 76%, transparent 76%, transparent);
	-webkit-transform: translate3d(-60px, 0px, 0px) rotateY(-90deg);
	transform: translate3d(-60px, 0px, 0px) rotateY(-90deg);
}
#front-wall {
	width: 200px;
	height: 133px;
	background-color: #ff0;
	-webkit-transform: translate3d(0px, 66px, 60px);
	transform: translate3d(0px, 66px, 60px);
}
#side-wall {
	width: 120px;
	height: 133px;
	background-color: #880;
	-webkit-transform: translate3d(-60px, 66px, 0px) rotateY(-90deg);
	transform: translate3d(-60px, 66px, 0px) rotateY(-90deg);
}
#shop-body {
	-webkit-transform: perspective(500px) rotateY(45deg);
	transform: perspective(500px) rotateY(45deg);
}

#tsubuyaki-view {
	width: 100%;
	height: 300px;
	border: 1px solid #c0c0c0;
	overflow: scroll;
}
.tsubuyaki {
	border-bottom: 1px solid #c0c0c0;
	padding: 5px;
}
.tsubuyaki > div:first-child {
	float: left;
	font-weight: bold;
}
.tsubuyaki > div:nth-child(2) {
	float: right;
}
.tsubuyaki > div:last-child {
	clear: both;
	margin-top: 5px;
}
