@charset "utf-8";
/* CSS Document */
@font-face{
    font-family: 'square-text';
    font-style: normal;
    src: local('Blinker'),
         url('../../../../fonts/Blinker.woff');
}
@font-face{
    font-family: 'instructions';
    font-style: normal;
    src: local('Sintony-Bold'),
         url('../../../../fonts/Sintony-Bold.woff');
}


html {
  height:100%;
}
body {
	animation: fadeIn 1s;
	background-color: paleturquoise;
 	margin: 0 2%!important; padding:0!important;
}
@keyframes fadeIn{
	0% {opacity:0;background-color:#000;}
	90% {opacity:0;}
	100% {opacity:1;background-color:#fff;}
}

.Instructions {
	display: block; position: relative;
	background-color: #E4E4E4;
	margin: 0px;
	border-left:5px #5C5C5C solid; border-right:5px #5C5C5C solid;
}.Instructions p {
	display: block;
	font-size: 13pt; font-family: 'instructions'; text-align: center;
	color: black; font-weight: normal;
	padding: 0.5em 2em; margin: 0px auto 1em;
}

.container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13pt;
	display: block;
	margin: 0px auto; padding: 0px;
}

#frame_ex2 {
	position:relative;
	width: 350px!important; height: 100px!important;
	margin: 0px auto 15px!important;
}

.cboxtags {
    list-style: none;
    padding: 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;
}

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: 12px;
    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 #12bbd4;
    background-color: #12bbd4;
    color: #fff;
    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-left:10px;
}

.after_in {
	font-size:14pt; font-family: 'square-text';
	color:navy;
	margin-left:-10px;
}

#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: 'square-text';
	-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 {
	margin: 0px 3em 15px;
}.Instructions p {
	font-size: 12pt;
}
}


@media screen and (max-width: 690px) {
body {
 	margin: 0; padding:0;
}
.Instructions {
	margin: 0px 0px 15px;
}.Instructions p {
	font-size: 11pt;
}
}