/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, input, select {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	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;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Custom code */

html, body, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, cite, code,
del, dfn, img, ins, kbd, samp, main,
tt, var, 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, input, select, div, button {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, a, abbr, acronym, address, cite,
code, del, em, dt, dd, li, label, input, select, textarea, th, td, figcaption, button {
    font-size: 1rem;
    line-height: 150%;
    text-overflow: ellipsis;
}

body, header, main, footer, section, nav, ul, div, table, thead, tbody, tr {
    width: 100%;
}

.hidden {
	display: none;
}

.invisible {
	opacity: 0;
}

.text,
.text * {
	display: inline;
	line-height: 150%;
}

select,
button,
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

button {
	background-color: transparent;
	border: none;
	padding: 0;
}

button, select {
	cursor: pointer;
}

input, select, textarea, button, a {
	outline: none;
}