<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('../lib/css/reset.css');
@import url('../lib/css/animate.css');
@import url('../lib/css/font-awesome.min.css');
@import url('standard.css');

@font-face {
font-family: 'HelveticaTextbookLT-Roman';
src: url('../font/helvetica/TextbookLT-Roman.eot?#iefix') format('embedded-opentype'),  url('../font/helvetica/HelveticaTextbookLT-Roman.woff') format('woff'), url('../font/helvetica/HelveticaTextbookLT-Roman.ttf')  format('truetype'), url('../font/helvetica/HelveticaTextbookLT-Roman.svg#HelveticaTextbookLT-Roman') format('svg');
font-weight: normal;
font-style: normal;
}

.starterScreen header {
    min-height: 40px;
}

.logo img {
    max-width: 100px;
}
.popup-overlay {
    display: none;
 
}

.logo {
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -50px;
        z-index: 11;
}
.popup-content {
       position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Black background with transparency */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#popupText {
    font-size: 24px;
    margin-bottom: 20px;
}

#popupCloseButton {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}
.starterScreen {
    position: relative;
    /* text-align: center; */
    margin: auto;
}

.activity_title {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 80px auto 50px;
}
.instructions {
    width: 50%;
    margin: 20px auto;
    text-align: left;
    background: #03c3eb;
    padding: 20px;
    border-radius: 20px;
}

.instructions ol {
    list-style-type: lower-roman;
    padding-left: 20px;
}

.instructions ol li {
    line-height: normal;
    padding-bottom: 7px;
    font-size: 15px;
    color: #fff;
}

.title-h3 {
    margin: 10px 0px 0px 0px;
    font-size: 20px;
    color: #fff;
    line-height: normal;
    padding: 0 10px;
}

b {
    font-weight: bold;
}


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

.submit {
    border: 1px #fff solid;
    background: #98c12a;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 16px;
    min-width: 110px;
	color:#fff;
	
}
.submit:hover {
    color: #000;
}

.question-section ol, .question-section ul {
    list-style: decimal;
    list-style-position: outside;
    margin: 0;
	padding-left: 25px;
}

.question-section ul {
    list-style: none;
}

.question-section {
    margin: auto;
    position: relative;
    /* /* text-align: center; */ */
}

.question-section ol li, .question-section ul li {
    margin: 5px 0px;
    font-size: 18px;
    position: relative;
    padding: 0px;
    transition: all .2s ease-in;
    font-weight: 300;
    /* line-height: normal; */
    /* max-width: 450px; */
	/* background: #f05562; */
}
.question-section ol li:hover, .question-section ul li:hover, .question-section ol li.active, .question-section ul li.active {
    font-size: 18px;
	color: #f05562;
}

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


.img-submit {
   font-size: 30px;
    position: absolute;
    left: 20px;
    display: none;
    top: 18px;
}
.img-incorrect {
    color: #e02206;
}

.img-correct {
    color: green;
}
.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;
    height: 250px;
    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: 22px;
        text-align: left;
        /* margin: 0px auto; */
        padding-bottom: 10px;
        color: #fff;
}
.feedback-text img {
    display: block;
    margin: 0px auto;
    /* text-align: center; */
}
.input-uppercase input[type="text"] {
    text-transform: uppercase;
}

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

.section-left {
    border-right: 2px solid #df5a49;
    box-sizing: border-box;
}

.question-section.blocker:after {
    content: '';
    width: 100%;
    height: 100%;
    z-index: 99;
    position: absolute;
    top: 0px;
    left: 0px;
}

 .activityImg {
    background: #fff;
    text-align: left;
    width: 250px;
    margin: auto;
    max-width: 100%;
}
.activityImg img {
    max-width: 100%;
}
figure img {
    max-width: 60%;
}

figure {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin: 10px auto;
    color: #000;
    -webkit-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.32);
    -moz-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.32);
    -ms-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.32);
    -o-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.32);
    box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.32);
}

figcaption {
    padding: 10px 0;
    /* text-align: center; */
    font-size: 13px;
}
.btn-primary {
    color: #fff;
    border: 1px #fff solid;
    background: #98c12a;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 16px;
    min-width: 110px;
	margin: 5px 5px;
}

h4#ans-title {
    font-size: 20px;
    line-height: normal;
    font-weight: normal;
    color: #fff;
    margin: 10px auto;
}
.feedback_img {
    position: absolute;
    right: 50px;
    bottom: 50px;
}

.feedback_img img {
    width: 170px;
    max-width: 100%;
}

.activity-completion {display:none;width: 80%;height: 100%;/* padding: 10px; */margin: auto;background: url(../img/completeImg.gif) no-repeat;background-position: center center;}
.complete_img img {
    max-width: 50%;
    /* text-align: center; */
}

.complete_img {
    width: 100%;
    /* text-align: center; */
    margin: auto;
}

.complete_msg {
    margin: 20px auto;
    /* text-align: center; */
    display: inline-block;
}

.complete_msg h2 {
    /* text-align: center; */
    color: #fff;
    font-size: 22px;
    line-height: normal;
    background: #df5a46;
    padding: 20px 20px;
    /* border-radius: 30px; */
    border: 2px #fff solid;
    display: inline-block;
}

#optionsInput .radio {
/*     display: none; */
}

table.ans-details {
    border: 1px solid #FFF;
    text-align: left;
    background: #f05562;
    margin: auto;
    color: #FFF;
    width: 100%;
    max-width: 100%;
    line-height:normal;
}

table.ans-details tr td:first-child {
    border-right: 1px solid #fff;
}

table.ans-details tr td {
    padding: 12px;
}

table.ans-details img {
    height: 32px;
    width: auto;
}

.gamecompleted-screen .text-center.col-sm-40 {
    display: none;
}

.gamecompleted-screen .col-sm-60 {
    width: 100%;
    float: none;
}

table.ans-details tr {
    border-bottom: 1px solid #FFF;
}

.show-col-sm {
    display: none;
}




label.label--radio img {
    height: 30px;
    width: auto;
}

body.completed .footer {
    clear: both;
}

#area-static figure img {
    max-width: 30%;
}

.ans-opt-static {
    text-indent: -19px;
    padding-left: 20px;
}
.icon_incorrect {
    margin-right: 2%;
    margin-top: -19px;
    float: right;
}

.icon_correct{
    margin-right: 2%;
    margin-top: -16px;
    float: right;
}


.show_ans {
    color: #1e430b;
    margin-left: 3%;
    font-size: 42px;
    font-weight: bold;
}
.questions p span {
    height: 100%;
    font-family: initial;
    display: inline-block;
    /* font-weight: bold; */
    margin: 6px;
}
#button_play_intro {
    width: 46px;
    height: 46px;
    position: absolute;
    right: 0%;
    background: url(../img/soundOn_icon.png);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    cursor: pointer;
    margin-top: -55px;
    right: 1%;
}
   </pre></body></html>