
:root {
	--font-rubik: "Rubik", sans-serif;
	--unit-line-height: 1.4em;

	--background: #E8EAED;
	--charcoal: #36454f;
	--white: #fdfdfd;
	--link-hover : #1CB4B4;

	--bs-table-striped-bg: #e8eaed;
	--bs-table-striped-color: #fdfdfd;
}

* {
	box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: greyscale;
  font-optical-sizing: auto;
}

html {
  font-size: 16px;
  line-height: var(--unit-line-height);
  margin: 0;
}

@media screen and (max-width:700px) {
	html {
		font-size: 16px;
	}
}

body {
	color: var(--charcoal);
  overflow-y: scroll;
  overflow-x: hidden;
  font-family: var(--font-rubik);
  font-weight: 300;
  line-height: var(--unit-line-height);
  background-color: var(--background);
  text-align: center;
}

main {
	margin: calc(1*var(--unit-line-height));
}

nav {
	background-color: var(--white);
	height:60px;
	padding: 8px 10px;
}

nav img {
	height: 44px;
}

nav img.logo {
	height: 24px;
}

nav object {
	vertical-align: middle;
	position: relative; 
	z-index: -1
}

.blocker {
	width:44px;
}

.top-nav {
	max-width: 600px;
	margin:auto;
}

.back-arrow, .info-icon {
	height: 44px;
	width: 44px;
}

.support-banner {
	color: var(--charcoal);
	background-color: rgba(0, 0, 0, 0.1);
	padding: 8px 16px;
	border-radius: 3px;
	display:inline-block;
}

.support-banner a {
	color: var(--charcoal);
}

p {

}

h1 {
	font-size: 1.2em;
	text-align: center;
	font-style: normal;
	font-weight: 700;
	margin-top: 2em;
	margin-bottom: 1em;
}

a {
	color: var(--charcoal);
}

a:hover {
	color: var(--link-hover);
	text-decoration: none;
}

footer a {
	font-size: 	16px;
	margin: 0 .5em;
}

@media screen and (max-width:700px) {
	footer a {
		font-size: 14px;
	}
}

strong {
	font-weight: 700;
}

.list-header {
	font-weight: 700;
	margin-bottom: 0;
}

ol {
	padding-left: 1em;
	margin-top:.25em;
}

ol li {
	margin-bottom:.25em;
}

.fraction {
    font-feature-settings: frac; /* Low-level setting for all browsers */
}

@supports (font-variant-numeric: diagonal-fractions) {
  .fraction {
      font-feature-settings: normal; /* Reset the low level, then... */
      font-variant-numeric: diagonal-fractions; /* ... use the better code */
  }
}

.text-block {
	text-align: left;
	max-width: 600px;
	margin: auto;
}

.table {
	margin: 1em auto;
	max-width: 600px;
}

.table-bold td {
	font-weight: 700;
	color: var(--charcoal);
	width:100px;
}

.table-bold th {
	font-weight: 300;
}

.size-notes span{
	margin: 0 .5em;
}

.second {
	margin-top: .5em;
}

.pamphlet-list {
	margin-bottom: 24px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.pamphlet-list a {
	text-decoration: none;
}

.pamphlet-item {
	font-weight: 700;
	font-size: 16px;
	background-color: var(--white);
	border-radius: 3px;
	display: flex;
	padding: 8px 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.pamphlet-item:hover {
	color: var(--white);
	background-color: var(--link-hover);
}

.suggest {
	color: var(--white);
	background-color: var(--charcoal);
}

.suggest:hover {
	background-color: var(--link-hover);
}


/* --- Bootstrap Changes --- */

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: var(--white);
}

.table>:not(caption)>*>* {
    padding: .4rem .4rem;
    color: var(--bs-table-color-state,var(--bs-table-color-type,var(--bs-table-color)));
    background-color: var(--background);
    border-bottom-width: 0;
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state,var(--bs-table-bg-type,var(--bs-table-accent-bg)));
}