.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }

.se-pre-con 
{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: center no-repeat #fff;
}
body,#questionDiv,#quesDivRope,.borderBottomCls,.rowClass,.bgClass
{
    user-select: none;
	background-repeat: no-repeat;
	background-position:center;
	background-size:100% 100%;
	overflow: hidden;
}
#questionDiv
{
	font-size: 2.4vw;
    font-weight: bold;
    color: black;
	line-height:13vh;
	overflow: unset!important; 
	display: flow;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    flex-wrap: wrap;           /* allows spans to wrap to next line */
    text-align: center;
	height: 27vh;
}
#questionDiv span {
    display: inline-flex;   /* important */
    line-height: 2.5;       /* reduce row height */
    margin: 0 4px;          /* small horizontal gap */
    padding: 0;
}
.ui-draggable-helper
{
	line-height:8vh !important;
}
#classificationDiv
{
	display: none;
	font-size: 2.4vw;
	color: black;
	font-weight: bold;
	overflow: hidden;
	margin-top: -4vh;
}
.zIndexClass
{
	z-index: 1;
	margin-bottom: 2vh;
}
.rowClass
{
	margin-top: 5vw;
    height: 10vh;
    overflow-x: hidden;
    border-radius: 2vw;
    border-bottom: 2px solid black;
	font-size: 2.1vw;
}
.borderBottomCls
{
	padding: 1vw;
	position: relative;
    top: 2vh;
}
.boxClass
{
	height:44vh;
}
.noPadding
{
	padding:0px!important;
}
#endPage
{
	display:none;
	margin-top:10vh;
}
#message
{
    font-size: 3vw;
    font-weight: bold;
	color:black;
}
#acknowledgementDiv 
{
	background-color: aliceblue;
    margin-top: 5vh;
    border: 0.22vw solid black;
    border-radius: 3vw;
    box-shadow: 5px 6px 2px black;
}
#developerNameDiv
{
	margin-bottom: 2vh;
}
.fontClass
{
	font-size:1.3vw;
	margin-top:1vh;
	color:black;
}
.firstLetter:first-letter
{
	font-size:1.5vw;
}

.blink_me
{
	animation:blinker 1s linear infinite;
}
@keyframes blinker
{
	50%
	{
		opacity:0.5;
	}
}
.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);
} 
}