*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
}

body {
	font-family: var(--font-family-sans);
	background: var(--body-background);
	color: var(--bs-body-color);
	min-height: 100vh;
}

body.overlay-active {
	overflow: hidden;
}

.text-muted {
	color: var(--muted-color) !important;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
