
/* Tree nodes, button nodes, and side layers */
.treeNode {
	height: var(--tabHeight);
	width: calc(var(--tabWidth) - 5px);
	border: var(--tabBorder) solid;
	border-radius: 0%;
	border-color: rgba(0, 0, 0, 0.125);
	box-shadow: var(--hqProperty2a), var(--hqProperty2b);
	text-align: left;
	font-size: var(--tabFont);
	font-family: cursive, "bahnschrift", "Courier New", "Courier Prime", "Lucida Console", monospace;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.5);
	text-shadow: var(--hqProperty3);
	margin: 0;
	left: -3px;
	top: 2px;
	transition-duration: 0.5s;
    position: relative;
}

.treeNode.small {
	height: var(--tabHeight);
	width: calc(var(--tabWidth) - 5px);
	border: 3px solid;
	border-left: none;
	border-right: none;
	border-top-color: rgb(223, 223, 223);
    border-right-color: rgb(223, 223, 223);
    border-bottom-color: rgb(223, 223, 223);
	border-radius: 0%;
	box-shadow: var(--hqProperty2a), var(--hqProperty2b);
	text-align: center;
	font-size: var(--tabFont);
	font-family: cursive, "bahnschrift", "Courier New", "Courier Prime", "Lucida Console", monospace;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.5);
	text-shadow: var(--hqProperty3);
	margin: 0;
	left: -3px;
	top: 2px;
	transition-duration: 0.5s;
    position: relative;
}

.treeButton {
	height: 100px;
	width: 100px;
	border: var(--hqProperty1);
	border-radius: 5%;
	border-color: rgba(0, 0, 0, 0.125);
	box-shadow: var(--hqProperty2a), var(--hqProperty2b);
	font-size: 40px;
	font-family: cursive, "bahnschrift", "Courier New", "Courier Prime", "Lucida Console", monospace;
	color: rgba(0, 0, 0, 0.5);
	text-shadow: var(--hqProperty3);
	padding: 0;
    position: relative;
}

.smallNode {
	height: 60px;
	width: 60px;
	font-size: 30px;
	margin: 50px 105px 0px 10px;
    position: relative;
}

.resetNotify {
	text-shadow: #6d6d6d 2px 2px;
}

.treeNode.can:not(.small).active {
	transition-duration: 0.2s;
	transform: scale(1, 1);
	box-shadow: 0 0 0px var(--points);
	padding-left: 20px;
	color: black;
	text-shadow: rgb(88, 88, 88) 1px 1px;
    position: relative;
}

.treeNode.can:not(.active):not(.small):hover {
	transition-duration: 0.2s;
	transform: scale(1, 1);
	box-shadow: 0 0 0px var(--points);
	padding-left: 15px;
	color: black;
    position: relative;
}

.treeNode.can.small.active {
	transform: scale(1, 1);
	box-shadow: 0 0 0px var(--points);
	color: black;
    position: relative;
}

.treeNode.can.small:hover {
	transform: scale(1, 1);
	box-shadow: 0 0 0px var(--points);
	color: black;
    position: relative;
}

.mark {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	z-index: 10000;
	margin-left: 0.9em;
	margin-right: 0.9em;
	margin-bottom: 1.2em;
	border-right: 0.3em solid transparent;
	border-bottom: 0.7em solid transparent;
	border-left: 0.3em solid transparent;
	font-size: 10px;
	overflow:auto;
	pointer-events: none;
}

.star {
	position: relative;
	display: inline-block;
	width: 0;
	height: 0;
	z-index: 10000;
	margin-left: 0.9em;
	margin-right: 0.9em;
	margin-bottom: 1.2em;
	border-right: 0.3em solid transparent;
	border-bottom: 0.7em solid #ffcc00;
	border-left: 0.3em solid transparent;
	font-size: 10px;
	pointer-events: none;

}

.star:before, .star:after {
	content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: .6em;
    left: -1em;
	border-right: 1em solid transparent;
    border-bottom: 0.7em solid #ffcc00;
    border-left: 1em solid transparent;
	transform: rotate(-35deg);
}

.star:after {
	transform: rotate(35deg);
}

red {
	color: red;
}
