﻿/* ======================================================
    Test Sequence 
    * Styles shared by all types of test sequences
   ====================================================== */

.itemNumber {
    font-size: xx-large;
    font-weight: bold;
}

.exampleItemHeading { margin-bottom: 0.6em; }

.exampleItemHeading .itemNumber {
    margin-top: 0;
}

.exampleItemInstructions {
    clear: both;
    margin-top: 1em;
    padding: 0.5em;
    border: solid 1px var(--c_box_border);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.exampleItemValidation {
    margin-top: 0.5em;
}

.correctExampleItemAnswer { color: green; }

.wrongExampleItemAnswer { color: red; }

/* Media Queries */
@media all and (max-width: 1200px) {
    .exampleItemHeading {
        font-size: 24px;
    }
}