body {
	font-family: "Segoe UI", Sans-serif;
	background-color: #000000;
	color: #ffffff;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	font-size: 12px;
	margin: 0;
	width: 100vw;
	height: 100vh;
	box-sizing: border-box;
}
body, a {
	cursor: url('cursor_normal.png'), auto;
}
.window {
	border: 1px solid rgba(255,255,255,0.6);
	position: fixed;
	left: 60px;
	top: 60px;
	width: 500px;
	height: 400px;
}
.window .wintitle {
	background: linear-gradient(rgba(255,255,255,0.4) 25%, rgba(255,255,255,0.3) 30%, rgba(0,0,0,0.0));
	border-bottom: 1px solid rgba(255,255,255,0.6);
}
.canselect {
	user-select: auto;
	-moz-user-select: auto;
	-webkit-user-select: auto;
}
.canselectcopy {
	user-select: all;
}
.window {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.window .wintitle {
	flex: 0;
}
.window .wincontent {
	flex: 1;
	padding: 1px;
	overflow: auto;
}
.pzcolorpicker {
	display: flex;
	flex-direction: column;
}
.pzcolorpicker .label {
	flex: 0;
}
.pzcolorpicker .pickerui {
	display: flex;
	flex-direction: row;
	flex: 1;
	border: 1px solid rgba(255,255,255,0.6);
	height: 100%;
	overflow: hidden;
}
.pickerui .scrolly {
	flex: 1;
	border-right: 1px solid rgba(255,255,255,0.6);
	overflow-y: scroll;
}
.pickerui .terrainlist {
	display: flex;
	padding: 4px;
	flex-direction: row;
	flex-wrap: wrap;
	max-height: 100%;
	gap: 1px;
	justify-content: flex-start;
	list-style-type: none;
}
.terrainlist .terrainbtn {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255,255,255,0.6);
	width: 100px;
	height: 100px;
	overflow: hidden;
	padding: 2px;
}
.terrainlist .terrainbtn div:nth-child(1) {
	flex: 1;
	text-align: center;
}
.terrainlist .terrainbtn img {
	width: 80px;
	height: 80px;
}
.terrainlist .terrainbtn .label {
	flex: 0;
	text-align: center;
}
.terrainlist .terrainbtn:hover {
	background-color: rgba(255,255,255,0.3);
}
.terrainlist .terrainbtn.active {
	background-color: rgba(150,200,255,0.5);
}
.terrainlist .notice {
	position: relative;
	width: 200px;
	height: 100px;
	border: 2px solid #ffffff;
	padding: 4px;
}
.pickerui .terraininfo {
	flex: 0 145px;
	background-color: #ffffff;
	color: #000000;	
}
.terraininfo .header {
	background-color: rgba(255,255,255,0.2);
}
.terraininfo .properties div {
	display: flex;
	flex-direction: row;
}
.terraininfo .properties div * {
	flex: 0.5;
}
.terraininfo .properties > div:nth-child(even) {
	background-color: #e0e0e0
}
.terraininfo .properties > div > div {
	white-space: nowrap;
	overflow: hidden;
}
.terraininfo .properties > div > div:nth-child(odd) {
	background-color: rgba(255,255,255,0.15);
}
.terraininfo .properties div > div:nth-child(1) {
	padding: 1px;
}
.terraininfo > .properties > div > div:nth-child(2) {
	border: 2px inset;
	background-color: #ffffff;
	user-select: all;
}
.terraininfo .preview {
	text-align: center;
}
.terraininfo img {
	border: 2px inset;
	width: 128px;
	height: 128px;
	overflow: hidden;
}

img {
	pointer-events: none;
}