BODY, HTML {
	width:100%;
	height:100%;
}
BODY {
	position:relative;
	color:#000;
	background:#FFF;
	padding:0px;
	margin:0px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: min(4vw, 2.5vh);
	-webkit-text-size-adjust:none;
}
.body {
	padding-bottom:75px;
}
.fullscreen {
	position:absolute;
	top:0;
	left:0%;
	width:100%;
	height:100%;
	overflow:hidden;
}
.wrapper {
	position:relative;
	width:600px;
	margin:0px auto;
}
BODY.home .wrapper {
	width:600px;
}
.narrow {
	position:relative;
	margin:0px auto;
	width: 50%;
}
P {
	margin-top:0.5em;
	margin-bottom:0.5em;
}
A {
}
A:link, A:visited {
	color:#3ba246;
}
B {
	font-weight: bold;
}
I, EM {
	font-style:italic;
	font-size:smaller;
}
SMALL {
	font-size:80%;
}
BIG {
	font-size:125%;
}
H1 {
	font-family: 'GMV DIN Pro Cond', Arial, Helvetica, sans-serif;
	font-weight: 900;
	font-size: 150%;
	margin:1em 0;
}
H2 {
	font-size: 120%;
	font-weight: bold;
	margin:1em 0;
}
.halfcolumn {
	float:left;
	width: calc((100% - 1 * 10px) / 2);
	margin-left:10px;
}
.halfcolumn:first-child {
	margin-left:0px;
}
.onethreecolumn {
	float:left;
	width: calc((100% - 2 * 10px) / 3);
	margin-left:10px;
}
.onethreecolumn:first-child {
	margin-left:0px;
}
.bigcolumn {
	float:left;
	width: calc(100% - 110px);
}
.smallcolumn {
	float:right;
	width: 100px;
}
._middle {
	position:absolute;
	width:100%;
	top:48%;
	-webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
         -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
._top {
	position: absolute;
	width:100%;
	top:7%;
	left:0;
}
._bottom {
	position: absolute;
	width:100%;
	bottom:10%;
	left:0;
}
._fullwidth {
	width: 100%;
}
._halfwidth {
	width: 50%;
}
span.error {
	color:yellow;
	background-color:red;
	display:block;
	padding:5px;
	text-align:center;
	margin-top:5px;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
}
span.edit, span.image, span.view, span.qrcode, span.check {
	display:inline-block;
	width:20px;
	height:20px;
	margin:0 1px;
	background: url(../images/icon_pin.png) no-repeat center center;
	background-size: 100% 100%;
	cursor: pointer;
}
span.edit {
	background-image: url(../images/icon_edit.png);
}
span.image {
	background-image: url(../images/icon_camera.png);
}
span.view {
	background-image: url(../images/icon_view.png);
}
span.qrcode {
	background-image: url(../images/icon_qrcode.png);
}
span.check {
	background-image: url(../images/check.png);
}
.grey {
	color:#999;
	font-style:italic;
}
.red {
	color:red;
}
.yellow {
	color:orange;
}
.blue {
	color:blue;
}
.green {
	color:green;
}
.required {
	display:inline-block;
	width:16px;
	height:16px;
	color:#F00;
	background: url(../images/required.png) no-repeat center center;
	background-size: 10px 10px;
	text-indent: -999px;
	overflow:hidden;
}
.nowrap {
	white-space:nowrap;
}
.message {
	display:block;
	margin:10px 0px;
	padding:10px;
	color:#FFF;
	background-color:red;
	text-align:center;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
}
.inputtext,
INPUT[type='text'],
INPUT[type='password'],
INPUT[type='date'],
INPUT[type='number'],
INPUT[type='file'],
TEXTAREA, .textarea,
SELECT {
	display:block;
	color:#201621;
	border:1px solid #000;
	background-color: #FFF;
	font-family: 'GMV DIN Pro Cond', Arial, Helvetica, sans-serif;
	font-weight: 900;
	font-size: inherit;
	text-align: center;
	margin:1px 0;
	padding:10px;
	width: calc(100% - 20px);
	-webkit-border-radius:50px;
	   -moz-border-radius:50px;
	        border-radius:50px;
	-webkit-appearance: none;
	outline: none;
}
INPUT[type='image'] {
	width:250px;
}
INPUT[type='checkbox'],
INPUT[type='radio'] {
	width: 18px;
	height:18px;
	margin:0;
}
.inputtext {
	white-space:nowrap;
	overflow:hidden;
	text-overflow: ellipsis;
}

TEXTAREA {
	height: calc(200px - 40px);
}
INPUT[type='text']:focus,
INPUT[type='password']:focus,
INPUT[type='date']:focus,
INPUT[type='number']:focus,
SELECT {
	border-color:#6bb745;
}
INPUT[type='text']:disabled,
INPUT[type='password']:disabled,
INPUT[type='date']:disabled,
INPUT[type='number']:disabled,
SELECT {
	color:#999;
}
SELECT {
	width: 100%;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	font-size: 100%;
	font-style:italic;
	color: #CCC;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	font-size: 100%;
	font-style:italic;
	color: #CCC;
	opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	font-size: 100%;
	font-style:italic;
	color: #CCC;
	opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
	font-size: 100%;
	font-style:italic;
	color: #CCC;
}
::-ms-input-placeholder { /* Microsoft Edge */
	font-size: 100%;
	font-style:italic;
	color: #CCC;
}

.bigbutton,
INPUT[type='reset'],
INPUT[type='button'],
INPUT[type='submit'] {
	display:block;
	color:#000;
	border:1px solid #000;
	background-color:#CCC;
	padding:8px 25px;
	text-align:center;
	white-space : nowrap;
	font-family: 'GMV DIN Pro Cond', Arial, Helvetica, sans-serif;
	font-weight: 900;
	font-size: 100%;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
	cursor: pointer;
}
INPUT[type='submit'], INPUT[type='button'].submit {
	color:#FFF;
	background-color:#009;
}
.bigbutton {
	text-decoration: none;
	padding:10px 30px;
}
.bigbutton:link, .bigbutton:visited {
	color:#000;
}
.smallbutton {
	display:inline-block;
	padding:5px 10px;
	color:#FFF;
	font-size: smaller;
	font-weight: bold;
	background-color:#24A0ED;
	text-decoration: none;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
	cursor: pointer;
}
.smallbutton:link, .smallbutton:visited {
	color:#FFF;
}
.fileinput {
	position:relative;
	display:inline-block;
	color:#000;
	border:1px solid #000;
	background-color:#CCC;
	padding:10px 28px;
	text-align:center;
	white-space : nowrap;
	font-family: 'GMV DIN Pro Cond', Arial, Helvetica, sans-serif;
	font-weight: 900;
	font-size: 100%;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
	cursor: pointer;
	overflow:hidden;
}
.fileinput span {
	display:inline-block;
	padding-left:30px;
	background: url(../images/icon_camera.png) no-repeat left center;
	background-size: 20px 20px;
}
.fileinput input[type='file'] {
	position:absolute;
	margin:0;
	padding:0;
	top:0;
	left:0;
	width:100%;
	height:100%;
	opacity:0;
	z-index:2;
}

.logo {
	padding-top:30px;
	text-align:center;
}

.navigation {
	position:fixed;
	left:0;
	bottom:0;
	width:100%;
	z-index:1;
	background-color: rgba(255,255,255,0.9);
}
.navigation ul {
	list-style-type:none;
	margin:0;
	padding:10px 0px;
	text-align:center;
	display:flex;
}
.navigation ul li {
	flex:1;
	flex-grow: 1;
	display:inline-block;
	margin:0;
	text-align:center;
}
.navigation ul li img {
	display:inline-block;
	width:20px;
	height:20px;
}
.navigation ul li span {
	display:inline-block;
	white-space:nowrap;
	margin-top:3px;
}
.navigation ul li a {
	text-decoration:none;
	font-size:small;
}
.navigation ul li a:link, .navigation ul li a:visited {
	color:#333;
}
.scrolling {
	margin:0px auto;
	width: 100%;
	overflow-x:auto;
}
.ttable {
	font-size: 16px;
	color:#333;
	background-color:#FFF;
	border-collapse: collapse;
}
.ttable > thead {
	background-color:#EEE;
}
.ttable > thead > tr,
.ttable > tbody > tr {
}
.ttable > thead > tr > th,
.ttable > tbody > tr > td,
.ttable > tfoot > tr > td {
	padding:10px;
	text-align:left;
	border-left: 1px dotted #CCC;
	vertical-align: top;
}
.ttable > thead > tr > th:first-child,
.ttable > tbody > tr > td:first-child,
.ttable > tfoot > tr > td:first-child {
	border-left: none;
}
.ttable > tbody > tr > td,
.ttable > tfoot > tr > td {
	border-top:1px solid #201621;
}
.ttable > tfoot {
	background-color:#EEE;
	font-weight:bold;
}

a.pagenav {
	display:inline-block;
	padding:5px 10px;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
	text-decoration:none;
	font-weight:bold;
}
a.pagenav:link, a.pagenav:visited {
	color:#3ba246;
	background-color:#FFF;
}
a.pagenav:hover,
a.pagenav.active {
	color:#003c49;
	background-color:#3ba246;
}
.rounded {
	-webkit-border-radius:15px;
	   -moz-border-radius:15px;
	        border-radius:15px;
	overflow:hidden;
	margin-bottom:5px;
}
.textbold {
	font-family: 'GMV DIN Pro Cond', Arial, Helvetica, sans-serif;
	font-weight: 500;
}
.textbold b {
	font-weight: 900;
}
.line {
	border-top: 2px solid #0f4d9f;
	width:80%;
	margin:5% 0px;
	margin-left:10%;
}
.block {
	margin:0.5em 0;
	dispaly: block;
	padding:10px;
	background-color:#EEE;
	-webkit-border-radius:20px;
	   -moz-border-radius:20px;
	        border-radius:20px;
}
.score {
	float:left;
}
.time {
	float:right;
}
.scrollingy {
	height: 430px;
	overflow-y:auto;
	-ms-overflow-style: none;
	scrollbar-width: none;  
}
.scrollingy::-webkit-scrollbar {
	display: none;
}
.question {
	position:relative;
	margin-top:50px;
	padding:10px 20px;
	background-color: rgba(255, 215, 140, 0.7);
	-webkit-border-radius:20px;
	   -moz-border-radius:20px;
	        border-radius:20px;
	-webkit-border-top-left-radius:0px;
	    -moz-border-radius-topleft:0px;
		    border-top-left-radius:0px;
}
.question .num {
	margin-left:-20px;
	margin-top:-30px;
	color:#FFF;
	display:inline-block;
	padding:5px 10px;
	font-size:130%;
	background: #952411;
	background: linear-gradient(0deg, rgba(149, 36, 17, 1) 0%, rgba(240, 92, 39, 1) 100%);
	-webkit-border-top-left-radius:5px;
	    -moz-border-radius-topleft:5px;
		    border-top-left-radius:5px;
	-webkit-border-top-right-radius:15px;
	    -moz-border-radius-topright:15px;
		    border-top-right-radius:15px;
}
.answer {
	position:relative;
	margin:10px 0px;
	border:1px solid #000;
	padding:10px 20px;
	overflow:hidden;
	-webkit-border-radius:20px;
	   -moz-border-radius:20px;
	        border-radius:20px;
}
.answer:has(input) label {
	cursor: pointer;
}
.answer.selected, .answer:has(input:checked) {
	background-color: rgba(236, 145, 138, 0.7);
}
.answer.true {
	background-color: rgba(158, 202, 233, 0.7);
}
.answer.false {
	background-color: rgba(236, 145, 138, 0.7);
}
.answer .num {
	position:absolute;
	display:block;
	color:#FFF;
	margin-left:-21px;
	margin-top:-11px;
	font-size:130%;
	padding:9px 14px;
	line-height:1em;
	background-color:#000;
	-webkit-border-top-left-radius:5px;
	    -moz-border-radius-topleft:5px;
		    border-top-left-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	    -moz-border-radius-bottomright:5px;
		    border-bottom-right-radius:5px;
}
.answer p {
	margin:0;
}
.answer:has(div.num) p {
	margin-left:25px;
}
.answer input {
	display:none;
}
.blur {
	opacity: 0.5;
}