/*--------------------------------------------------------------
 * Typography
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Basic blocks
# Elements
# Tables
# Forms
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Basic blocks
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #333;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	line-height: 1.4;
    margin: .5em 0;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
	text-transform: uppercase;
}

p {
	margin-block-start: 0;
    margin-block-end: 0;
	margin-bottom: 0.6em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
  background-color: #f8f6ed;
  border-left: .5em solid #CEC7AD;
  margin: 1.5em 1em;
}
blockquote p {
  display: block;
  padding: 1em 2em;
  margin: 0;
}
blockquote p + p {
  padding-top: 0;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #333;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

ul,
ol {
    display: block;
    margin-block-start: 0em;
    margin-block-end: 2em;
    margin-inline-start: 2em;
    margin-inline-end: 2em;
    padding-inline-start: 0em;
    margin-top: 0.5em;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

li {
	margin-bottom: .5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

/*--------------------------------------------------------------
# Tables
--------------------------------------------------------------*/
table {
	margin: 0 0 1.5em;
	width: 100%;
}
/* NEW Tables */
table {
  margin-bottom: 2em;
}
table,
th,
td {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #666;
}

th,
td {
  padding: 0.5em;
}

/* striped tables */
/* even lines */
tr:nth-child(2n) {
  background: white;
}
/* odd lines */
tr:nth-child(2n+1) {
  background: #f8f6ed;
}

/* heading */
thead tr:first-child,
th,
th a {
  background: #CEC7AD;
  color: black;
}

/* links inside table headers stay black in every state (contrast) */
th a:link,
th a:visited,
th a:hover,
th a:focus,
th a:active {
  color: black;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/* buttons */
button,
button:hover,
button:focus {
  border: none;
}

/* button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #eee;
	color: rgba(0, 0, 0, 0.8);
	font-size: 1rem;
	line-height: 1.4;
	padding: .6em 1em .4em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}
button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #333;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: .6em 1em .4em;

}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}
 */

textarea {
	width: 100%;
}
