.se-pre-con 
{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: center no-repeat #fff;
}
body,#questionDiv,.borderClass,#acknowledgementDiv
{
    user-select: none;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position:center;
	background-size:100% 100%;
}
#questionDiv
{
	height: 45vh;
    position: fixed;
    top: 0;
}
#hindiTextDiv,#englishWrongTextDiv
{
	font-size:3.5vw;
	font-weight: bold;
	margin-top: 4vh;
	color:black;
}
.noPadding
{
	padding:0px!important;
}
.borderClass
{
	font-size: 2.5vw;
    font-weight: 600;
    color: white;
    text-align: center;
    height: 15vh;
    line-height: 15vh;
}
#modalRoot
{
	display: none; 
    position: fixed; 
    margin-top: 35vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
}
.overlay
{
  z-index: 10;
  background-color: rgba(0,0,0,0.5);
}
.modal-content
{
	background-color:rgba(38, 59, 95, 0.611764705882353);
    box-shadow: 17px 25px 14px rgb(0, 0, 0), inset -98px 0px 100px rgb(38, 59, 95);
    border: 4px solid white;
    margin-top: 4vh;
}
#confiramtionText
{
	font-size: 3vw;
    line-height: 10vh;
}
#responseBox {
   margin-top: 25vh;
   background-color: #185b94;
   color: white;
   position:relative;
   top:0;
   left:0;
   height: 48vh;
   padding:2vh;
}
#btnDiv
{
	margin-top:3vh;
}
#Yes,#No
{
	background-color:rgb(249,185,0);
	color:black;
	font-size:2.5vw;
	font-weight:bold;
}
.closed {
    opacity: 1 !important;
    color: red;
    float: right;
    font-size: 5vw;
    font-weight: bold;
}
#endpage
{
	display:none;
	margin-top:10vh;
}
#message
{
    font-size: 5vw;
    font-weight: bold;
	color:white;
}
#robotImg1,#robotImg2 {
	display: none;
}
.roboImg {

	z-index: -1;
    animation-name: example;
    animation-duration: 2s;
    animation-iteration-count: 2;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}
@keyframes example {
	0%   { top:-10px;}
	15%  {top:-7px;}
	30%  {top:-2px;} 
	45%  {top:2px;}
	60%  {top:5px;}
	75%  {top:7px;}
	90% {top:9px;}
	100%  {top:12px;}
}
.slideInDownCls {
	animation-duration: 1s;
	
    animation-fill-mode: both;
    animation-name: slideInDownCls;
}
@keyframes slideInDownCls
{
	0% {
		z-index: -1;
		transform: translate3d(0, -100%, 0);
		
	}
	50%
	{
		z-index: -1;
	}
	75%
	{
		z-index: -1;
	}
	95%
	{
		z-index: -1;
	}
	100% {
		transform: translate3d(0, 0, 0);
		/* visibility: visible; */
	}
}
.blink_me {
    animation: blinker 1s linear infinite;
}
@keyframes blinker
{
	50%
	{
		opacity:0.5;
	}
}