@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('Blinker.woff');
}

@font-face{
    font-family: 'Sintony-Bold';
    font-style: normal;
    src: local('Sintony-Bold'),
         url('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;
}


body{
	font-family: var(--strFontFace);
	background-color: white;
 	margin-right: 3%; /* original : 5% */
	margin-left: 3%; /* original : 5% */
	font-size: var(--strFontSize);
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

p{
	text-align: left;
	margin: 0px;
}

.list {
	list-style: none;
	padding: 0;
	margin:0;
}
.list li {
  position: relative;
  padding: 20px 0 20px 40px;
  cursor: pointer;
}
.list li:hover {
  background-color: aliceblue;
}
.list li:before {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4F5151;
  content: "";
  left: 0;
  transition: .3s ease-in-out;
  top: 27px;
}
.list li:after {
  position: absolute;
  border-left: 1px dotted #4F5151;
  width: 1px;
  bottom: -12px;
  content: "";
  left: 3px;
  top: 48px;
}
.list li:hover:before{box-shadow: 0 0 0 10px rgba(0,0,0,.2)}
.list li:last-child:after {content: none;}



table,div,span,td{
	margin:0;
	padding:0;
}


div.Titles{
	padding: 0.5em;;
	text-align: center;
	color: var(--strTitleColor);
	font-family: var(--strFontOther);
}


button{
	font-family: var(--strFontOther);
	font-size: 15pt;
	display: inline;
}

.FuncButton + .FuncButton {
	margin:0px 10px;
}


.ExerciseTitle{
	font-size: 160%;
	color: var(--strTitleColor);
}

.ExerciseSubtitle{
	font-size: 135%;
	color: var(--strTitleColor);
}


div.StdDiv, div.ReadingContainer{
	background-color: var(--strExBGColor);
	text-align: center;
	font-size: var(--strFontSize);
	padding: 0.5em;
	margin-bottom: 10px;
}
#InstructionsDiv {
	background-color: #E4E4E4;
	text-align: center;
	font-size: var(--strFontSizeInstruction);
	font-family: var(--strFontOther);
	color: black;
	padding: 0.5em;
	margin-bottom: 15px;
	border-left:5px #5C5C5C solid;
	border-right:5px #5C5C5C solid;
}
div.ExerciseContainer {
	background-color: var(--strExBGColor);
	text-align: center;
	padding:0px 2em;
	font-size: 1em;
	color: var(--strTextColor);
	min-width: 15em;
	flex-grow: 1;
	flex-basis: 0;
	margin: 1px;
}

div.ReadingContainer {
	min-width: 15em;
	flex-grow: 1;
	flex-basis: 0;
	margin: 1px;
	max-height: 5000em;/* to prevent fontboosting on touchdevices */
}

div#ContainerDiv{
	margin: -1px;
	padding: 0;
	border: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}


/* EndCorePageCSS */



.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);
}


span.Instructions{

}

div.ExerciseText{

}

.FeedbackText, .FeedbackText span.CorrectAnswer, .FeedbackText span.Guess, .FeedbackText span.Answer{
	color: saddlebrown;
}

.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;
	text-align:center;
	color:black!important;
	background-color: floralwhite;
}
input:focus, textarea:focus {
	outline: none; 
	border-radius: 5px;
	padding: 5px;
	border:1px solid gray;
	box-shadow: -1px -1px 5px #888;
	text-align:center;
}


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;
}
/* JCloze styles */

#WordsDiv {
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: saddlebrown;
	border-radius: 0.5rem 0.5rem 0 0;/*added by AS */
	background-color: #FFF8DC;
}
.ClozeWordList{
	text-align: center;
	font-size:16pt; font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.5px;
}


div.ClozeBody {
	font-weight: normal;
	font-size:17pt;
	line-height: 2.25;
	text-align: justify;
	margin-top: 2em;
	margin-bottom: 2em;
}

.number {
	display: inline;
	background-color:black; color:white;
	font-weight:bold;
	padding:0.2em 0.5em;
	border-radius: 100px;
}

span.GapSpan{
	font-weight: bold;
	color:green;
	background-color: white;
	font-size:17pt;

}

div.ExerciseDiv{
	color: var(--strTextColor);
}







div.Feedback {
	background-color: CORNSILK;
	left: 33%; width: 34%; top: 33%;
	z-index: 10;
	border-radius:8px; border: solid 3px brown;
	padding: 25px;
	text-align: center;
	position: absolute;
	display: none;
	font-family: var(--strFontOther);
	font-size:17pt; line-height: 1.5;
}


/* 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 {
	border-style: solid;
	border-radius: 0.5em;
	padding: 0.5em;
	min-width: 3em;
	border-color: silver;
	color: var(--strTextColor);
	background-color: var(--strExBGColor);
	border-width: 1pt;
	cursor: pointer;	
	box-shadow: 0.2em 0.3em 0.2em var(--strFuncShadeColor);
	margin:15px 5px;
}


.FuncButton:active {
	box-shadow: none;
}

.FuncButton:hover{
	color: var(--strExBGColor);
	background-color: var(--strTextColor);
}



a{
	color: var(--strLinkColor);
}

a:visited{
	color: var(--strVLinkColor);
}

a:hover{
	color: var(--strLinkColor);
}

div.CardStyle {
	position: absolute;
	font-family: var(--strFontFace);
	font-size: 1em;
	border-style: solid;
	border-radius: 0.5em;
	padding: 0.5em;
	min-width: 2em;
	border-width: 1pt;
	color: var(--strTextColor);
	box-shadow: 0.2em 0.3em 0.2em var(--strTextColor);
	background-color: var(--strExBGColor);
	left: -50px;
	top: -50px;
	overflow: visible;
	touch-action: none;
	user-select: none;
	box-sizing: border-box;
}

div.CardStyleCentered{
	text-align: center;
}



@media screen and (max-width: 980px) {
div.Feedback {
	left: 20%; width: 50%; top: 90%;
	padding: 20px;
	text-align: center;
	position: absolute; 
	display: none;
	font-size:17pt; line-height: 1.5;
}
}

@media screen and (max-width: 650px) {
body {
 	margin-right: 0.1%; margin-left: 0.1%;
}
#InstructionsDiv {
	font-size: 12pt;
}
button{
	font-size: 13pt;
	margin:0px 10px;
}
.ClozeWordList{
	font-size:15pt;

}


div.ClozeBody {
	font-size:16pt;	line-height: 2
	margin-top: 1.5em; margin-bottom: 1.5em;
}

div.Feedback {
	left: 10%; width: 75%; top: 60%;
	border: solid 3px brown;
	padding: 20px;
	display: none;
	font-size:16pt; line-height: 1.5;
}
}

@media screen and (max-width: 480px) {

div.StdDiv, div.ExerciseContainer {
	margin-right: 10px!important; /* original : 5% */
	margin-left: 10px!important;
	padding:10px!important;
}
input, textarea{
	font-size: 15pt;
}
select + button {
	margin-left:2px!important;
}
select{
	font-size: 15pt;
	letter-spacing:1.1px;
}
div.ClozeBody {
	font-size:16pt;
	line-height: 1.75;
	text-align: justify;
	margin-top: 1em;
	margin-bottom: 1em;
}


div.Feedback {
	left: 5%;
	top: 1%;
	width: 80%;
	border: solid 3px brown;
	padding: 15px;
	display: none;
	font-size:16pt;
	line-height: 1.5;
}
}

