/* Reset default CSS rules to a standard state for all browsers */
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, button,
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: inherit;
	vertical-align: baseline;
	color: inherit;
	outline: none;
}

b, strong {
	font-weight: bold;
}

i, em {
	font-style: italic;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	height: 100%;
}
div#app {
	height: 100%;
}
body {
	height: 100%;
	line-height: 1;
	background: white;
}
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;
}
a {
	text-decoration: none;
}


/***************************************
font-face rules
For: Roboto font and Material Icons font
****************************************/
@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: url('./fonts/MaterialIcons.woff2') format('woff2');
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}

/* fonts source: https://gwfh.mranftl.com/fonts/roboto?subsets=latin */
/* roboto-300normal - latin */
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-display: swap;
	font-weight: 300;
	src: local('Roboto Light'), local('Roboto-Light'), url('./fonts/Roboto-Light.woff2') format('woff2')
}

/* roboto-300italic - latin */
@font-face {
	font-family: 'Roboto';
	font-style: italic;
	font-display: swap;
	font-weight: 300;
	src: local('Roboto Light italic'), local('Roboto-Lightitalic'), url('./fonts/Roboto-LightItalic.woff2') format('woff2')
}

/* roboto-400normal - latin */
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-display: swap;
	font-weight: 400;
	src: local('Roboto Regular'), local('Roboto-Regular'), url('./fonts/Roboto-Regular.woff2') format('woff2')
}

/* roboto-400italic - latin */
@font-face {
	font-family: 'Roboto';
	font-style: italic;
	font-display: swap;
	font-weight: 400;
	src: local('Roboto Regular italic'), local('Roboto-Regularitalic'), url('./fonts/Roboto-Italic.woff2') format('woff2')
}

/* roboto-500normal - latin */
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-display: swap;
	font-weight: 500;
	src: local('Roboto Medium'), local('Roboto-Medium'), url('./fonts/Roboto-Medium.woff2') format('woff2')
}

/* roboto-500italic - latin */
@font-face {
	font-family: 'Roboto';
	font-style: italic;
	font-display: swap;
	font-weight: 500;
	src: local('Roboto Medium italic'), local('Roboto-Mediumitalic'), url('./fonts/Roboto-MediumItalic.woff2') format('woff2')
}

/* roboto-700bold - latin */
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-display: swap;
	font-weight: 700;
	src: local('Roboto Bold '), local('Roboto-Bold'), url('./fonts/Roboto-Bold.woff2') format('woff2')
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}