* {
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.toolbar {
	display: flex;
	flex-direction: row;
	height: 35px;
	width: 1280px;
	background-color: #393232;
}

.toolbar div {
	color: #8d6262;
	width: 35px;
	margin-right: 1px;
	cursor: pointer;
	transition: 0.25s;
	font-size: 35px;
	text-align: center;
	margin-right: 16px;
}

.toolbar div:hover {
	transform: scale(1.2);
	color: #ed8d8d;
}

.nodeProperties {
	display: none;
	opacity: 0;
	text-align: initial !important;
}

.nodeProperties:hover {
	transform: none !important;
	color: #8d6262 !important;
}


.container {
	display: block;
	position: relative;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 300px;
}

.container label {
	position: absolute;
	left: 35px;
	top: 5px;
}

.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 5;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}

.container:hover input ~ .checkmark {
	background-color: #ccc;
}

.container input:checked ~ .checkmark {
	background-color: #ed8d8d;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.container input:checked ~ .checkmark:after {
	display: block;
}

.container .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}