@charset "utf-8";
/* CSS Document */
@font-face{
    font-family: 'square-text';
    font-style: normal;
    src: local('Blinker'),
         url('./css/Blinker.woff');
}
@font-face{
    font-family: 'instructions';
    font-style: normal;
    src: local('Sintony-Bold'),
         url('./css/Sintony-Bold.woff');
}


html {
  height:100%;
}
body {
	animation: fadeIn 1s;
	background-color: LIGHTGOLDENRODYELLOW;
 	margin: 0 2%!important; padding:0!important;
}
@keyframes fadeIn{
	0% {opacity:0;background-color:#000;}
	90% {opacity:0;}
	100% {opacity:1;background-color:#fff;}
}
* {
  box-sizing: border-box;
}
table,div,span,td, p {
	margin:0;	padding:0;
}

.Instructions {
	display: block; position: relative;
	background-color: GAINSBORO;
	margin: 10px 0px 0px; padding: 0.5em 3em;
	border-left:5px DIMGRAY solid; border-right:5px DIMGRAY solid;
}
.Instructions p {
	display: block;
	font-size: 13.5pt; line-height: 1.35; 
	font-family: 'instructions'; text-align: center;
	color: black; font-weight: normal;
}

.container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13pt;
	display: block;
	margin: 0px auto; padding: 0px;
}

#frame_video { /* slides */
	position:relative; display: block;
	width:100%; padding-bottom:20%;
	margin: 5px auto!important;
	/*background-color: peru;*/
}
#iframe_v1 {
	position:absolute; display: block;
  width:100%; height:100%; border: none; overflow: hidden;
	margin: 0px auto!important;
	top: 0; left: 0; bottom: 0; right: 0;
}

.cboxtags {
  list-style: none;
  padding: 10px 20px;
	display: flex; flex-direction: row; flex-wrap: wrap;
	justify-content: center; align-content: center; align-items: center;
}
.cboxtags li{
  display: inline;
}
.cboxtags li label {
    display: inline-block;
    color: black; background-color: rgba(255, 255, 255, .9);
    border: 2px solid lightgray; border-radius: 25px;
    white-space: nowrap;
    margin: 3px 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.5s ease, color 0.5s ease;
}
.cboxtags li label:hover{
	background-color: orangered; color:white;
	border: 2px solid darkgray;
}

ul.cboxtags li label {
    padding: 8px 12px;
    cursor: pointer;
		font-size: 15pt; font-family: 'square-text';
}

ul.cboxtags li label::before {
    display: inline-block;
    font-style: normal; font-variant: normal; text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 6 Free"; font-weight: 900;
    font-size: 13px;
    padding: 2px 6px 2px 2px;
    content: "\f067";
    transition: transform .3s ease-in-out;
}

.cboxtags li input[type="checkbox"]:checked + label::before {
    content: "\f00c";
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
}

.cboxtags li input[type="checkbox"]:checked + label {
    border: 2px solid SLATEGRAY;
    background-color: yellow; color: black;
    transition: all .2s;
}

.cboxtags li input[type="checkbox"] {
  display: absolute;
}
.cboxtags li input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.cboxtags li input[type="checkbox"]:focus + label {
  border: 2px solid SLATEGRAY;
}

.richtig {
	border: 2px solid darkgreen!important;
  background-color: darkgreen!important;
	color:white!important;
}
.falsch {
	border: 2px solid red!important;
  background-color: red!important;
	color:white!important;
}


.results {
	display:block; width:300px;
	margin:0 auto; padding: 12px 8px;
	border-top: 2px solid navy;
	border-bottom: 2px solid navy;
	background-color: lavender;
	font-family: 'square-text';
}
.results_in {
	border:none!important;
	font-size:13pt; font-family: 'square-text';
	font-weight: bold;
	color:navy; background-color: lavender;
	outline: none;
	padding:0px 0px 0px 15px;
}

.after_in {
	font-size:14pt; font-family: 'square-text';
	color:navy;
}

#push_btn {
  display: block; min-width: 145px; height:2em;
	border: solid 2px lightseagreen; border-radius: 0.5em;
	margin:5px auto; padding: 3px 6px;
	color: black; background-color: white;
	cursor: pointer;
	font-size: 13pt; font-family: 'instructions';
	-moz-box-shadow: 4px 4px 0px 0px teal;
  -webkit-box-shadow: 4px 4px 0px 0px teal;
  box-shadow: 4px 4px 0px 0px teal;
	transition: background 0.4s ease, color 0.4s ease;
}
#push_btn:active {
	box-shadow: none;
}
#push_btn:hover {
	color: white!important; background-color: teal;
	border: solid 2px floralwhite;
}



@media screen and (max-width: 950px) {
body {
 	margin: 0 1%; padding:0;
}
.Instructions {
	padding: 0.5em 2.5em;
}
.Instructions p {
	font-size: 13pt;
}
#frame_video { /* slides */
	width:100%; padding-bottom:40%;
}
ul.cboxtags li label {
		font-size: 14pt;
}
}


@media screen and (max-width: 690px) {
body {
 	margin: 0!important; padding:0!important;
}
.Instructions {
	padding: 0.5em 2.5em;
}
.Instructions p {
	font-size: 12pt;
}
#frame_video { /* slides */
	width:100%; padding-bottom:60%;
}
.cboxtags {
  padding: 10px;
}
ul.cboxtags li label {
		font-size: 13pt;
}
}