.note, .warning, .danger, .tip {
	background-color: rgb(250, 250, 250);
	border-left-style: solid;
	border-left-width: 0.4rem;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.note {
	border-left-color: var(--superblue);
}

.note::before {
	content: "🛈 Note\a";
	white-space: pre;
	font-weight: bold;
	color: rgb(87, 125, 189);
}

.warning {
	border-left-color: rgb(235, 161, 52);
}

.warning::before {
	content: "⚠ Warning\a";
	font-weight: bold;
	white-space: pre;
	color: rgb(235, 161, 52);
}

.danger {
	border-left-color: rgb(255, 83, 83);
}

.danger::before {
	content: "☣ Danger\a";
	white-space: pre;
	font-weight: bold;
	color: rgb(255, 83, 83);
}

.tip {
	border-left-color: rgb(50, 85, 232);
}

.tip::before {
	content: "💡 Tip";
	color: rgb(50, 85, 232);
}
