/* RESET */
*, *::before, *::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
html{
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}
html, body {
	height: 100%;
}
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	border-style: none;
}
input, button, textarea, select, optgroup {
	font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}


/* OPINIONATED */
main, details {
	display: block;
}
button, select {
	text-transform: none;
}
[type=button], [type=reset], [type=submit], button {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
}
textarea {
	overflow: auto;
}
code, kbd, pre, samp {
	font-family: monospace, monospace;
	font-size: 1rem;
}
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}
table {
	text-align: left;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	margin: 0;
	border-width: 1px;
	border-style: solid;
}
table td, table th {
	padding: 1rem;
	border-width: 0 1px 1px 0;
	border-style: solid;
}
hr {
	height: 0;
	overflow: visible;
}
svg, svg:hover {
	display: block;
	position: relative;
	line-height: 1;
	width: 100%;
	height: 100%;	
	transition:
		background-color 0.1s ease-in-out,
		fill 0.1s ease-in-out;
}
p:empty {
	display: none;
}


/* HELPERS */
.sr, .screen-reader-text {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
[class*="list-"], [class*="list-"] li  {
	list-style: none;
	padding: 0;
}
.list-inline li {
	display: inline-block;
}
.list-icons a {
	display: inline-flex;
	flex-flow: row nowrap;
	align-items: center;
	border: 0;
	margin-bottom: 1rem;
	transition: color var(--motion-default);
}
.list-icons svg {
	width: 1.5rem;
	height: 1.5rem;
	margin-right: 1rem;
	transition: fill var(--motion-default);
}
.no-margin {
	margin: 0 !important;
}
.no-padding {
	padding: 0 !important;
}
.no-select {
	user-select: none;
	cursor: default
}
.no-display {
	display: none;
}

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