body {
	background-color: #ffffff;
	color: #334155;
}

.visibility-node-concealed {
	display: none !important;
	opacity: 0;
	transform: translateY(30px);
}
.visibility-node-gradual {
	display: block !important;
	opacity: 1;
	transform: translateY(0);
	animation: visual-drift-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.visibility-node-immediate {
	display: block !important;
	opacity: 1;
	transform: translateY(0);
}

@keyframes visual-drift-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hovering-component-unit {
	animation: subtle-levitation-loop 6s ease-in-out infinite;
}

@keyframes subtle-levitation-loop {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}

.radiating-trigger-action {
	animation: aura-throbbing-signal 2s infinite;
}

@keyframes aura-throbbing-signal {
	0% {
		box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
	}
}
