body{
	background: black;
}

@font-face{
	font-family:"VT323";
	src:url(../fonts/VT323-regular.ttf);
}

*{
	font-family:"VT323";
	cursor: url(../images/default.png), auto;
	user-select: none;

}

#tilemap{
	position: absolute;
	left:0;
	top:0;
}

#minimap{
	position: absolute;
	right: 0px;
	bottom:0px;
	padding:10px;
	border-top-left-radius: 15px;
	background-image: url("../images/bg.png");
	background-origin: padding-box;
	display: none;
}

#info{
	position: absolute;
	right: 0px;
	top:0px;
	padding:10px;
	background-image: url("../images/bg.png");
	border-bottom-left-radius: 15px;
	display: none;
	color:white;
}

#info .value{
	border:1px solid #290001;
	color:white;
	background-color:#87431d;
	padding:5px;
	display:inline-block;
}

#info span,#info img{
	vertical-align: middle;
}

.toolbar > div{
	position: absolute;			
	bottom:10px;
	display: flex;
	justify-content: center;
	z-index: 9;
}

#toolbar_buildings{
	left:400px;
}

#toolbar_left > div{
	justify-content: unset;
	z-index: 10;
	left: 10px;
}

.toolbar .tool{
	width:64px;
	height:64px;

	margin:4px;

	border:1px solid #290001;
	background-color:#87431d;
	text-align: center;
}

.toolbar{
	display: none;
}

.toolbar .tool > img{
	position: absolute;
	left:25%;
	bottom:4px;
}

#messages{
	position: absolute;
	bottom:100px;
	left: 10px;
}

#messages div{
	border:1px solid #290001;
	background-color:#87431d;
	padding:5px;
	color:white;
	margin:5px;
}

.tool{
	position: relative;
}

.tooltip{
	text-align: left;
	position: absolute;
	bottom:100%;
	width:200%;
	left:-50%;

	background:black;
	color:white;
	display: none;

	border:1px solid #290001;
	color:white;
	background-color:#87431d;
	padding: 10px;
	box-sizing: border-box;
}

.tool:hover .tooltip{
	display: block;
}

.tooltip img{
	width:16px;
	height:16px;
}

#lobby{
	position: absolute;
	width:800px;
	height:600px;
	margin-left:-400px;
	margin-top:-300px;
	left:50%;
	top:50%;

	border:1px solid #290001;
	color:white;
	background-image: url("../images/bg.png");
	border-radius: 20px;
	padding:10px;
	box-sizing: border-box;
	
}

#lobby button,#lobby input{
	font-size:1.2em !important;
}

.tool_fullsize > img{
	left:0 !important;
	top:0;
}

#lobby input{
	border:1px solid #290001;
	color:white;
	background-color:#87431d;
}

.center{
	text-align: center;
}

.right{
	text-align: right;
}

#lobby .list{
	width:100%;
	min-height: 100px;
	border:1px solid #290001;
	color:white;
	background-color:#87431d;
	margin-bottom: 10px;
}

#lobby .list .item{
	padding:10px;

}

#lobby .list .item:hover{
	background-image: url("../images/bg.png");
}