
.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%;
}
#homeLogoDiv
{
	margin-top: 2vh;
}
#questionDiv
{
    height: 45vh;
	position: fixed;
	top:0;
}
#hindiTextDiv,#englishWrongTextDiv
{
	font-size:3.5vw;
	font-weight: bold;
	margin-top: 4vh;
	color:black;
}
#englishWrongTextDiv
{
	color:black;
}
.noPadding
{
	padding:0px!important;
}
.borderClass
{
	font-size: 2.5vw;
	font-weight: 600;
	color:white;
	text-align:center;
	height: 15vh;
	line-height: 15vh;
}
#characterDiv
{
	height: 46vh;
    padding: 2vw;
}
#correctWrongModal
{
	padding-top: 23vh!important
}
.modal 
{
    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
{
	box-shadow: none!important;
	background-color:transparent;
/* 	box-shadow: 17px 25px 14px rgb(0, 0, 0), inset -98px 0px 100px rgb(38, 59, 95);*/
	border: none; 
	position: relative;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	/* border: 1px solid #999; */
	/* border: 1px solid rgba(0,0,0,.2); */
	/* border-radius: 6px; */
	outline: none;
}
.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;
}
#acknowledgementDiv 
{
   /*   margin-top: 5vh;
   border: 0.22vw solid black;
    border-radius: 3vw;
    box-shadow: 5px 6px 2px black; */
}
#developerNameDiv
{
	margin-bottom: 2vh;
}
.fontClass
{
	font-size: 2vw;
    margin-top: 1vh;
    color: white;
    font-family: serif;
    font-style: italic;
}

#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 0.7s linear infinite;
}

@keyframes blinker
{
	50%
	{
		opacity:0.5;
	}
}
.pulse_me
{
	animation:pulse 1.5s linear infinite;
}

@keyframes pulse
{
	0% {
		transform: scale3d(1, 1, 1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}
.bounceCls
{
    animation:bounceCls 1.5s linear infinite;
}


@keyframes bounceCls{
 0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
}
40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
}
70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
}
90% {
    transform: translate3d(0,-4px,0);
} 
}