@charset "utf-8";

@font-face{
	font-family: Rubric;
	font-style: normal;
	font-weight: normal;
	src:url(../__fonts/Cabin-Bold.ttf);
}

@font-face{
	font-family: Ans;
	font-style: normal;
	src:url(../__fonts/Roboto-Regular.ttf);
}
@font-face{
	font-family: Ans;
	font-style: normal;
	src:url(../__fonts/Roboto-Regular.otf);
}

@font-face{
	font-family: Title;
	font-style: normal;
	font-weight: normal;
	src:url(../__fonts/MyriadPro-Semibold_2.otf);
}

div, input
{
    font-variant-ligatures: none;
}

body{
	margin:0px;
	padding:0px;
	-webkit-user-select:none;
	-moz-user-select:none;
}

#main{
	width: 1280px;
	height: 720px;
}


#rubricAud {
	display: inline-block;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	margin-right: 10px;
	vertical-align: middle;
	background-size: 90%;
	background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #F29B34;
	box-shadow: 1px 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 2px 0 rgba(0,0,0,0.2);
}

.options{
	transition: background-color 0.3s;
}

.cell{
	position:absolute;
	text-align:center;
	display:inline-block;
	margin-left:5px;
}

#optDv{
	position:absolute;
	top:240px;
	border:3px solid transparent;
	background:transparent;
	padding-left:10px;
	padding-top:5px;
}

#SnoDiv{
	border:#CCC solid 2px;
	background:#FFF;
	text-align:center;
}



.drop-target {
  background-color: #29e;
  border-color: #fff;
  border-style: solid;
}

.drop-active {
	background-color:#eee;
	border-radius:5px;
}


.dropZone
{
	position:absolute;
	top:150px;
	margin-left:42px;
	height:100px;
	background:#fff;
	border:2px solid #F29B34;
		
}
.dropZone
{
	background:#F29B34;
	color:#036;
	text-align:center;
	font-size:30px;
	font-family:Ans, sans-serif;
	margin-bottom:10px;
}
.dropZone
{
	display:inline-block;
	background:#669;
	
	margin-bottom:10px;
	/*float:left;*/
}


#submit{
	font-size: 21px;
   font-family: Ans, sans-serif;
    display: block;
    width: 145px;
	float:left;
    font-weight: bold;
    text-align: center;
    background: -webkit-linear-gradient( #fcfcfc, #bcbcbc);
    background: -o-linear-gradient(#fcfcfc, #bcbcbc);
    background: -moz-linear-gradient(#fcfcfc, #bcbcbc);
    background: linear-gradient( #fcfcfc, #bcbcbc);
    color: #151515;
    cursor: pointer;
    padding: 7px 0 7px 0;
    border-radius: 10px;
    border-bottom: 1px solid #9c9999;
    box-shadow: 2px 2px 5px 1px #3e3e3e;
	visibility:hidden;
}
#answer{
	font-size: 21px;
    font-family: Ans, sans-serif;
    display: block;
    width: 145px;
    font-weight: bold;
    text-align: center;
    background: -webkit-linear-gradient( #fcfcfc, #bcbcbc);
    background: -o-linear-gradient(#fcfcfc, #bcbcbc);
    background: -moz-linear-gradient(#fcfcfc, #bcbcbc);
    background: linear-gradient( #fcfcfc, #bcbcbc);
    color: #151515;
    cursor: pointer;
    padding: 7px 0 7px 0;
    border-radius: 10px;
    border-bottom: 1px solid #9c9999;
    box-shadow: 2px 2px 5px 1px #3e3e3e;
	float:right;
	visibility:hidden;
	/* display:none; */
}

#Reset{
	font-size: 21px;
    font-family: Ans, sans-serif;
    display: block;
    width: 145px;
    font-weight: bold;
    text-align: center;
    background: -webkit-linear-gradient( #fcfcfc, #bcbcbc);
    background: -o-linear-gradient(#fcfcfc, #bcbcbc);
    background: -moz-linear-gradient(#fcfcfc, #bcbcbc);
    background: linear-gradient( #fcfcfc, #bcbcbc);
    color: #151515;
    cursor: pointer;
    padding: 7px 0 7px 0;
    border-radius: 10px;
    border-bottom: 1px solid #9c9999;
    box-shadow: 2px 2px 5px 1px #3e3e3e;
	float:right; 
	/*! visibility:hidden; */
	display: none;
	margin-right: 40px;
}

#checkSolution{
	position:absolute;
	width:350px;
	top:654px;
	left:260px;
	z-index:1;
	display: flex;
	justify-content: space-around;
}

.nextpreNav{
	width:540px;
    position: absolute;
	display:inline-block;
}

#nextBtn{
	background:url(../../__images/arrow.png);
	background-size: 61px 61px;
	width: 61px;
    height: 61px;
	float: right;
	cursor:pointer;
}


#preBtn{
	background:url(../../__images/arrow2.png);
	background-size: 61px 61px;
	float:left;
	width: 61px;
    height: 61px;
	cursor:pointer;
}

#activityText{
	position:absolute;
	left:200px; top:65px;
	-webkit-animation-name: activityTextAnim;
    -webkit-animation-duration: 1s;
    animation-name: activityTextAnim;
    animation-duration: 1s;
}

@-webkit-keyframes activityTextAnim {
    0%   {left:200px; top:-100px;}
    50%  {left:200px; top:95px;}
    100% {left:200px; top:65px;}
}


@keyframes activityTextAnim {
    0%   {left:200px; top:-100px;}
    50%  {left:200px; top:95px;}
    100% {left:200px; top:65px;}
}

#completedText{	
	position:absolute;
	left:600px; top:65px;
	-webkit-animation-name: completedTextAnim;
    -webkit-animation-duration: 1s;
    animation-name: completedTextAnim;
    animation-duration: 1s;
}


@-webkit-keyframes completedTextAnim {
    0%   {left:600px; top:225px;}
    50%  {left:600px; top:35px;}
    100% {left:600px; top:65px;}
}


@keyframes completedTextAnim {
    0%   {left:600px; top:225px;}
    50%  {left:600px; top:35px;}
    100% {left:600px; top:65px;}
}

#scorePanel{
	position:absolute;
	top: 145px;
    left: 1055px;
	font-family:Ans, sans-serif;
	font-size:20px;
	background-color:#312122;
	border-radius:8px;
	padding:10px;
	color:#fff;
}


#dropZone7{
	display: none;
}



.boxTitleC
{
	background:#F29B34;
	color:#036;
	text-align:center;
	font-size:30px;
	font-family:Ans, sans-serif;
	margin-bottom:10px;
	position: absolute;
}



#quesInfoPannel{ 
	position:absolute;
	top: 147px;
    left: 185px;
	padding:10px;
	font-family:Ans, sans-serif;
	font-size:25px;	
	color:#fff;
	background-color:#312122;
	border-radius:8px;
	/*border-top-right-radius:10px;
	border-bottom-right-radius:10px;*/
}



#timerCanvas{
	position:absolute;
	top: 194px;
    left: 1048px;
	/*border:1px solid red;*/
}

#timesup{
	position: absolute;
	top:0;
    text-align: center;
    display: flex;
    align-items: center;
    width: 1280px;
    height: 720px;
    background-color: rgba(255,255,255, 0.8);
    z-index: 2;
}

#circularDiv{
	width:250px;
	height:250px;
	border-radius:50%;
	background-color:#F90;
	margin: 0 auto;
	display: flex;
    align-items: center;
	color: #fff;
	font-family:Ans, sans-serif;
    font-size: 40px;	
	padding:50px;
	/*background-image:url(../Assets/images/face.png);*/
}