/*---------------------------------------------------------------------------*/
/* styles to be shared across all tour applications */

*
{
	box-sizing: border-box;
}

html, body
{
	height: 100%;
	background-color: white;
}

body, select, input, textarea, button
{
	font-family: Calibri, sans-serif;
	font-size: 1em;
}

body
{
	margin: 0px; /* required to allow 100%-sizing for children without scrollbars */
	user-select: none;
	-moz-user-select: none;
}

small, .Small /* use class to also shrink line height! */
{
	font-size: 0.7em;
}

a
{
	text-decoration: underline solid blue;
	color: unset;
}

p
{
	margin-block-start: 0.5em;
	margin-block-end: 0.5em;
}

strong
{
	font-weight: normal;
	color: red;
}

span
{
	white-space: nowrap;
}

/*---------------------------------------------------------------------------*/

