/* --- Bootstrap Reboot (Basic Reset) --- */

/* Set default box-sizing to border-box */
*, *::before, *::after {
	box-sizing: border-box;
}
/* Remove default margins */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
	margin: 0;
}
/* Set core body defaults */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	text-align: left;
	background-color: #fff;
	color: #212529;
}
/* Remove list styles */
ul, ol {
	padding: 0;
	list-style: none;
}
/* Set basic link styles */
a {
	color: #0d6efd;
	text-decoration: none;
	background-color: transparent;
}
a:hover {
	color: #0056b3;
	text-decoration: underline;
}
/* Remove border for images */
img {
	border-style: none;
	max-width: 100%;
	height: auto;
}
/* Remove default form element styles */
button, input, optgroup, select, textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
/* Reset table styles */
table {
	border-collapse: collapse;
}
/* Remove focus outlines only for mouse users */
:focus-visible {
	outline: auto;
}
:focus:not(:focus-visible) {
	outline: 0;
}

/* prettier-ignore-end */