@charset "utf-8";
/* This is the CSS stylesheet used in the exercise. */
/* Elements in square brackets are replaced by data based on configuration settings when the exercise is built. */

/* BeginCorePageCSS */

/* Made with executable version 7.0 Release 3 Build 0 */
@font-face{
    font-family: 'Blinker';
    font-style: normal;
    src: local('Blinker'),
         url('../../../../fonts/Blinker.woff');
}
@font-face{
    font-family: 'Sintony-Bold';
    font-style: normal;
    src: local('Sintony-Bold'),
         url('../../../../fonts/Sintony-Bold.woff');
}



/* CSS variables for colours. */
:root{
	--strFontFace:       Blinker,Geneva,Arial,sans-serif;
	--strFontOther:      Sintony-Bold;
	--strFontSize:       16pt;
	--strFontSizeInstruction: 14pt;
	--strTextColor:      #000000;
	--strTitleColor:     #000000;

	--strFuncLightColor: #ffffff;
	--strFuncShadeColor: #7f7f7f;
	--strLinkColor:      #0000FF;
	--strVLinkColor:     #0000CC;
	
	--strNavBarColor:    #000000;
	--strNavLightColor:  #7f7f7f;
	--strNavShadeColor:  #000000;
	--strNavTextColor:   #ffffff;
	
	--strPageBGColor:    aliceblue;
	--strExBGColor:      #FFFFFF;
}

html {
  height:100%;
}
body {
	animation: fadeIn 1s;
	font-family: 'Blinker';
	background-color: #ffffff;
 	margin: 0 3%; padding:0;
}
@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, ol, ul {
	margin:0;	padding:0;
}

#ShuffleQ {
	display:flex;
	flex-direction: row; flex-wrap: wrap;
	margin:5px 15px; padding:0;
    list-style: none;
    counter-reset: li;
		
}
#ShuffleQ > li {
	position: relative; 
    padding:16px 20px; margin:20px auto;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
	width:350px;
	align-content: center; align-items: stretch;
	border-left:solid 4px white; border-right:solid 4px white;
	/*margin:25px auto!important; padding: 0px 25px;*/
	transition: 0.3s all linear;
	box-shadow: 2px -2px 5px 0 rgba(0,0,0,.1),
     					-2px -2px 5px 0 rgba(0,0,0,.1),
   	 					2px 2px 5px 0 rgba(0,0,0,.1),
    					-2px 2px 5px 0 rgba(0,0,0,.1);
}
#ShuffleQ > li:hover {
	background-color:bisque;
	border-left:solid 4px darksalmon;	border-right:solid 4px darksalmon;
}
#ShuffleQ > li:before {
	position: absolute;
  top: 14px; left:-40px;
  width:50px;
  text-align:center;
  font-size: 18pt; line-height: 1.5; font-weight: bold;
  color: darksalmon; background-color:white;
	border-radius:8px 0px 0px 8px; border:solid 2px darksalmon;
  counter-increment: li;
  content: counter(li);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;    
}
#ShuffleQ > li:hover:before {
	width:40px; left:-44px;
  color:white; background-color: darksalmon;
}



.ShuffleLine {
	list-style: none;
	margin:15px 0px!important;
	padding-left:20px;
}
.ShuffleLine li {
	display:block;
	margin: -10px 0px;
}
.ShuffleLine li:hover {
	text-decoration-color: darksalmon;
	text-decoration-line: underline;
}
.ShuffleLine li::before {
	content: "\27A5   ";
	text-decoration: none!important;
}


div.Titles{
	padding: 0.5em;;
	text-align: center;
	color: var(--strTitleColor);
	font-family: var(--strFontOther);
}



.ExerciseTitle {
	font-size: 22pt; font-family: 'Sintony-Bold';
	color: black;
	text-align: center;
}
#InstructionsDiv {
	background-color: #E4E4E4;
	text-align: center;
	font-family: 'Sintony-Bold'; font-size: 14pt; line-height: 1.25;
	color: black;
	padding: 0.5em;
	margin: 0 0 15px 0;
	border-left:5px #5C5C5C solid; border-right:5px #5C5C5C solid;
}

div.ExerciseContainer {
	display: block; width:100%;
	/*background-color: var(--strExBGColor);*/
	margin: 0 auto!important; padding: 0;
}



.Guess{
	font-weight: bold;
}

.CorrectAnswer{
	font-weight: bold;
}

div#Timer{
	padding: 0.25em;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: var(--strTitleColor);
}

span#TimerText{
	padding: 0.25em 0.5em;
	border-width: 1px;
	border-radius:8px;
	border-style: solid;
	font-weight: bold;
	display: none;
	color: var(--strTitleColor);
}



.LeftItem{
	font-size: 1em;
	color: var(--strTextColor);
	text-align: left;
}

.RightItem{
	font-weight: bold;
	font-size: 1em;
	color: var(--strTextColor);
	text-align: left;
}

span.CorrectMark{

}

input, textarea{
	font-family: var(--strFontFace);
	font-size: 100%;
	border-radius: 5px;
	padding: 3px;
	border:1px solid gray;
	margin:0px 3px;
}
input:focus, textarea:focus {
	outline: none; 
	border-radius: 5px;
	padding: 5px;
	border:1px solid gray;
	box-shadow: -1px -1px 5px #888;
}


select{
	font-size: 100%;
	/* Stan - Rounded menu */
	border-radius: 5px;
	padding: 3px 2px 3px 5px;
	border: 1px solid silver;
/* Stan - Rounded menu END */
}





select:focus {
outline:none;
}



div.ExerciseDiv{
	color: var(--strTextColor);
}


/* JCloze styles */


div.ExerciseContainer{
	max-height: 5000em;
	}
div.ClozeBody {
	font-weight: normal;
	font-size:17pt;
	line-height: 2;
	text-align: justify;
	margin-top: 2em;
	margin-bottom: 2em;
	cursor: pointer;
	}

span.GapSpan {
	font-weight: normal;

	}


.GapSpanFoundError {
	font-weight: bold;
	letter-spacing: 1.25px;
	color: red;
	text-decoration:line-through;
	}

.GapSpanNotFoundError {
	font-weight: bold;
	letter-spacing: 1.25px;
	color: darkorange;
	text-decoration:line-through;
	background-color: #EEEEEE;
	border-top-left-radius: 8px;
	border-bottom-right-radius:8px;
	}
	
.GapSpanCorrection {
	font-weight: normal;
	color: white;
	margin-left:3px; padding-right:6px!important;
	background-color:green;
	text-decoration:none;
	letter-spacing: 1.5px;
	border-top-right-radius: 8px;
	border-bottom-left-radius:8px;
}

.GapSpanDetected {
	font-weight: bold;
	color: white;
	background-color:crimson;
	padding: 1px 4px;
	border-radius:10px;
	text-decoration:none;
	}	

.GapSpanUnDetected {
	font-weight: bold;
	color: white;
	background-color:darkblue;
	padding: 1px 4px;
	border-radius:10px;
	text-decoration:none;
	}

.ClozeWordList{
	text-align: center;
	font-weight: bold;
}



/* Keypad styles */

div.Keypad{
	text-align: center;
	display: none; /* initially hidden, shown if needed */
	margin: 10px auto;
	margin-bottom: 0.5em;
	display: block;
}


div.Keypad button{
	font-family: var(--strFontFace);
	font-size: 100%;
	background-color: #ffffff;
	margin:0px 3px; padding:2px 6px;
	width: 1.6em;
	font-family: var(--strFontOther);
	border-style: solid;
	border-width: 1px;
	border-radius: 8px;
	color: var(--strTextColor);
	box-shadow: 0.2em 0.3em 0.2em gray;
}

.FuncButton {
	display: block; min-width: 145px; height:2.5em;
	border: solid 2px lightseagreen; border-radius: 0.5em;
	margin:4px auto; padding: 3px 6px;
	color: var(--strTextColor); background-color: var(--strExBGColor);
	cursor: pointer;
	font-size: 13pt; font-family: var(--strFontOther);
	-moz-box-shadow: 4px 4px 0px 0px teal;
  -webkit-box-shadow: 4px 4px 0px 0px teal;
  box-shadow: 4px 4px 0px 0px teal;
}
.FuncButton:active {
	box-shadow: none;
}
.FuncButton:hover{
	color: var(--strExBGColor); background-color: teal;
	border: solid 2px floralwhite;
}


div.Feedback {
	position: absolute; display: none; 
	flex-direction: column; flex-wrap: nowrap;
	justify-content: center; align-items: center; align-content: center;
	width:50%; height: 50%; 
	top: 50%; left: 50%; transform: translate(-50%,-50%);
	overflow: auto; margin: 0px; padding: 25px;
	z-index: 10;
	border-radius:8px; border: solid 3px brown;
	background-color: CORNSILK;
	box-shadow: 0.2em 0.3em 0.4em black;
	-moz-box-shadow: 0.2em 0.3em 0.4em black;
  -webkit-box-shadow: 0.2em 0.3em 0.4em black;
}
.FeedbackText {
	display:block; position: relative;
	color: saddlebrown;
	font-size:16pt; line-height: 1.5;
	text-align: center; font-family: 'Sintony-Bold';
	margin:5% auto 25px;
}
#FeedbackOKButton {
	display: block; position: relative; width: 75px; height: 55px;
	border: solid 2px brown; border-radius: 0.5em;
	margin:0 auto; padding: 3px 6px;
	color: maroon; background-color: var(--strExBGColor);
	cursor: pointer;
	font-size: 15pt; text-align: center; font-family: 'Sintony-Bold';
		-moz-box-shadow: 4px 4px 0px 0px maroon;
  -webkit-box-shadow: 4px 4px 0px 0px maroon;
  box-shadow: 4px 4px 0px 0px maroon;
}
#FeedbackOKButton:hover {
	color: var(--strExBGColor); background-color: maroon;
	border: solid 2px floralwhite;
}







@media screen and (max-width: 650px) {
body{
 	margin-right: 1%;	margin-left: 1%; 
	padding-top: 0.25em;
	padding-bottom: 0.25em;
}
button{
	font-size: 12pt;
}

#InstructionsDiv {
	font-size: 12pt;
}
div.Feedback {
	width:70%; height: 30%;
	top: 0!important; left: 0!important; bottom: 0!important; right: 0!important;
}

}

@media screen and (max-width: 480px) {
body{
 	margin-right: 5px; margin-left: 5px;
	padding-top: 0.25em;
	padding-bottom: 0.25em;
}

}