* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body {
	height: 100%;
	overflow: hidden;
	font-family: Tahoma;
}

#container {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

#phaserDiv {
	background: #222;
	flex: 1;
	overflow: hidden;
}

#divider {
	height: 5px;
	background: #000;
	cursor: row-resize;
}

#jsDiv {
	background: #464443;
	flex: 1;
	padding: 10px;
	overflow: auto;
	overflow-x: hidden;
}

input[type="checkbox"] {
	transform: scale(1.5);
	margin-right: 10px;
	cursor: pointer;
	background-color: transparent;
}

input[type="text"] {
	padding: 5px;
	margin-left: 20px;
	font-size: 18px;
	color: white;
	background-color: transparent;
	border: solid;
}

select{
	padding: 5px;
	margin-left: 20px;
	color: white;
	font-size: 18px;
	background-color: transparent;
	border: solid;
}

.input_point_size{
	width: 45px;
}

.input_keywords{
	width: 250px;
}

.extra_parameter{
	width: 250px;
}

.black_button {
	background-color: black;
	color: white;
	padding: 12px 24px;
	margin: 5px 5px;
	border: none;
	border-radius: 0;
	font-size: 16px;
	cursor: pointer;
	text-transform: uppercase;
	width: 150px;
}

.config_row{
	position: relative;
	top: 10px;
	left: 200px;
}

.buttons{
	position: absolute;
}