/* Tree nodes, button nodes, and side layers */
.treeNode {
	height: 100px;
	width: 100px;
	border: var(--hqProperty1);
	border-color: rgba(0, 0, 0, 0.125);
	border-radius: 50%;
	box-shadow: var(--hqProperty2a), var(--hqProperty2b);
	font-size: 40px;
	font-family: "Lucida Console", "Courier New", monospace;
	color: rgba(0, 0, 0, 0.5);
	text-shadow: var(--hqProperty3);
	padding: 0;
	margin: 0 10px 0 10px;
}

.nodeLabel {
	font: inherit;
	font-family: inherit;
}

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

.smallNode {
	height: 60px;
	width: 60px;
	font-size: 30px;
}

.resetNotify {
	box-shadow: var(--hqProperty2a), 0 0 8px #ffffff;
}

.treeNode.can:hover {
	transform: scale(1.15, 1.15);
	box-shadow: var(--hqProperty2a), 0 0 20px var(--points);
}

.notify {
	transform: scale(1.05, 1.05);
	border-color: rgba(0, 0, 0, 0.125);
	box-shadow: var(--hqProperty2a), 0 0 20px #ff0000;
}



.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);
}

@keyframes sparkle {
  0%, 100% { box-shadow: 0 0 15px #7b42f5, 0 0 30px #4b0082; }
  50% { box-shadow: 0 0 20px #9a7bf5, 0 0 40px #6b0092; }
}

@keyframes shine {
  0%, 100% { box-shadow: 0 0 15px #ffd700, 0 0 30px #ff8c00; }
  50% { box-shadow: 0 0 20px #ffe000, 0 0 40px #ff9c00; }
}

@keyframes divineGlow {
  0%, 100% { box-shadow: 0 0 15px #ff4500, 0 0 30px #8b0000; }
  50% { box-shadow: 0 0 20px #ff6347, 0 0 40px #8b2323; }
}

@keyframes leafGlow {
  0%, 100% { box-shadow: 0 0 15px #228b22; }
  50% { box-shadow: 0 0 25px #32cd32; }
}

@keyframes angelicGlow {
  0% {
      box-shadow: 0 0 15px #add8e6;
  }
  50% {
      box-shadow: 0 0 25px #ffffff;
  }
  100% {
      box-shadow: 0 0 15px #add8e6;
  }
}