/* core.css */

/*css reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	/*font-size: 100%; */
	font-family: 'Open Sans', sans-serif;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	/* color: var(--foreground-color); */
}
ol, ul {
	list-style: none;
}
ol.styled, ul.styled {
	list-style: initial;
    margin-left: 15px;
	line-height: 1.5;
    margin-bottom: 0.5rem;
}
ol.styled li, ul.styled li {
    padding: 2.5px 0;
}

p {
    line-height: 1.4;
    /* padding-bottom: 5px; */
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

button {
	font-family: inherit;
}

input {
	font-family: inherit;
}

/*app specific*/

/* #content {
    padding-top: var(--safe-area-inset-top);
} */

/*turn bold on*/
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

b, strong {
	font-weight: 700;
}

a {
	color: var(--primary-action-color, inherit);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

div:focus-visible,
li:focus-visible,
h1:focus-visible,
h2:focus-visible,
h3:focus-visible,
h4:focus-visible,
h5:focus-visible,
a:focus-visible,
button:focus-visible,
span:focus-visible {
	/* outline: -webkit-focus-ring-color auto 1px; */
	outline: 1px auto var(--primary-action-color, inherit);
	width: fit-content;
	border-radius: 5px;
}