<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "Sehaj";
  src: url('../All Fonts/Sehaj-ENG-Bold.otf');
}


html, body {
	padding: 0px;
	margin: 0px;
}
body {
    font-family: auto;
    background: url(../../img/game_bg.png) no-repeat;
    background-size: 100% 100%;
    height: 100vh;
}
.hidden {
	display:none;
}

.wrapper{
	background-size: 100% 100%;
	position: relative;
	height: 100%;
	overflow: auto;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 15px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


}
.title-h2 {
    font-size: 25px;
    text-transform: uppercase;
}
.footer {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    color: #FFF;
}

.title-h4 {
    font-size: 22px;
    font-family: auto;
    color:#C529A3 !important;
}

.content {
	    margin: 0 auto;
	    z-index: 9;
	    position: relative;
	    transition: all .2s ease-in;
}

.button-wrapper {
    display: block;
    width: 100%;
    margin-top: 43px;
}


.body-container {
    width: 100%;
    max-width: 962px;
    margin: auto;
    padding: 0px;
    box-sizing: border-box;
    /* margin-bottom: 48px; */
}

.btn {
   -webkit-user-select: none;
   -webkit-transition: background .2s .1s;
   transition: background .2s .1s;
   border: 2px #1e9306 solid;
   -webkit-border-radius: 3px;
   border-radius: 10px;
   cursor: pointer;
   display: inline-block;
   font-size: 16px;
   font-weight: 500;
   outline: none;
   overflow: hidden;
   position: relative;
   text-align: center;
   text-transform: uppercase;
   -webkit-tap-highlight-color: transparent;
   z-index: 0;
   background-color: #1e9306;
   color: #fff;
   line-height: 20px;
   padding: 10px 20px;
   margin: 5px 10px;
   font-family: 'Salsa', cursive;
   letter-spacing: 0.5px;
   box-shadow: 0px 0px 5px 0px rgb(0 0 0);
}
.btn:hover {
    background-color: #B71C1C;
}

.question-section ol {
    list-style: decimal;
    list-style-position: outside;
    margin: 0px 20px 0px 60px;
    animation: bounce; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */
	
}


.header {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.6);
    width: 100%;
    margin: auto;
    margin-bottom: 10px;
    line-height: normal;
}

.sub-header {
    padding: 10px;
    color: #C62828;
    font-weight: bold;
    font-size: 16px;
    margin: auto;
    /* margin-bottom: 41px; */
    line-height: normal;
}

.question-section {
    padding-top: 33px;
}

.question-section ol li {
    margin: 20px 0px;
    font-size: 24px;
    position: relative;
    padding: 20px 20px;
    transition: all .2s ease-in;
}

.btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.question-section input[type="text"] {
    background: #fdfce2;
    border: none;
    font-size: 20px;
    height: 25px;
    text-align: center;
    width: 150px;
    padding: 4px;
    border: 1px solid black;
    background: #FFF;
}


.img-submit {
    width: 28px;
    position: absolute;
    left: -59px;
    display: none;
    top: 18px;
}

.attempt-correct .img-submit.img-correct{
	display: block;
}

.attempt-incorrect .img-submit.img-incorrect {
	display: block
}

.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.37);
    top: 0px;
    left: 0px;
    z-index: 10;
	display: none;
}

.modal-container {
    width: 400px;
    min-height: 200px;
    position: absolute;
    background: #FFF;
    text-align: center;
    background: white;
    left: 50%;
    top: 20%;
    margin-left: -200px;
    padding: 20px;
    box-sizing: border-box;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
    -moz-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
}

.modal-content {
    min-height: 120px;
}

.question-section .attempt-correct input[type="text"][readonly] {
    background: #dafff1;
}

.question-section .static-ans input[type="text"][readonly] {
    background: #4285f4;
    color: white;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
    border-color: white;
    cursor: default;
}

.feedback-text {
	font-size: 28px;
}

.input-uppercase input[type="text"] {
	text-transform: uppercase;
}

.input-lowercase input[type="text"] {
	text-transform: lowercase;
}


.duration1s { animation-duration: 1s; }
.duration2s { animation-duration: 2s; }
.duration3s { animation-duration: 3s; }
.duration4s { animation-duration: 4s; }
.duration5s { animation-duration: 5s; }
.duration6s { animation-duration: 6s; }
.duration7s { animation-duration: 7s; }
.duration8s { animation-duration: 8s; }
.duration9s { animation-duration: 9s; }
.duration10s { animation-duration: 10s; }


@media (max-width: 768px) {
	.question-section ol li {
		margin: 10px 0px;
		padding: 10px;
	}

	.body-container {
		margin-top: auto;
	}

	.header {
		position: relative;
		height: auto;
	}

	.content {
		margin: 0px 0px 0px 0px;
	}
}

@media (max-width: 400px) {
	.question-section ol li {
		font-size: 15px;
	}

	.question-section ol {
		margin: 0px 10px 0px 40px;
	}

	.question-section input[type="text"] {
		font-size: 14px;
		height: 17px;
		width: 28px;
	}

	.btn {
		padding: 5px;
		font-size: 12px;
	}

	.header {
		font-size: 20px;
		padding: 10px 0px;
	}

	.sub-header {
		padding: 5px;
		width: 81%;
	}

	.title-h4 {
		font-size: 18px;
	}

	.question-section {
		padding: 5px;
	}

	.btn {
		margin-bottom: 5px;
	}
	
	.attempt-incorrect .img-submit.img-incorrect, .attempt-correct .img-submit.img-correct {
		top: 12px;
		left: -36px;
		width: 13px;
	}
	
	.modal-container {
		top: 1%;
		width: 98%;
		margin-left: 1%;
		left: 0%;
	}
}

.clearfix {
    clear: both;
}

.feedbackImg {
    width: 100%;
    height: 1px;
    position: relative;
}

.feedbackImg .feedback-container {
    position: absolute;
    left: 80px;
    bottom: -120px;
}

.feedbackImg .feedback-container img {
    width: 150px;
}

div#mainWrapper.lineblocker:before {
    background: rgba(255, 255, 255, 0);
    content: '';
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 999;
    position: absolute;
}

div#myblocker {
    position: fixed;
    background: rgba(255, 255, 255, 0);
    z-index: 9999;
}</pre></body></html>